home *** CD-ROM | disk | FTP | other *** search
/ Revista CD Expert 32 / CD Expert nº 32.iso / NBA 2000 / NBA2000.exe / CABFILE / IDR_CABFILE / Data / UIScript / InGame / Coaching / ROSTER.UI
Text File  |  1999-06-14  |  94KB  |  3,879 lines

  1. "2D\Overlays\Coaching\Roster"
  2.  
  3. //********************************
  4. //  Data Container
  5. //********************************
  6. DataContainer {
  7.     Int "InGameCoachingHomeAwaySelection" {
  8.         RadioGroup "InGameRosterLogoBox";
  9.     };
  10.     Int "EnableSubstitutionsAway" {
  11.         CheckButton "InGameSubstitutionButtonAway";
  12.         InitialValue 1;
  13.     };
  14.     Int "EnableSubstitutionsHome" {
  15.         CheckButton "InGameSubstitutionButtonHome";
  16.         InitialValue 1;
  17.     };
  18.  
  19.     String "HomePlayerDisplayID" {InitialValue "PIX_NONE";};
  20.     String "AwayPlayerDisplayID" {InitialValue "PIX_NONE";};
  21.  
  22.     String "InGameRosterHomePlayerDragID" {InitialValue " ";};
  23.  
  24.     String "InGameRosterAwayPlayerDragID" {InitialValue " ";};
  25.  
  26.     Int "HomeTeamSelection" {PlayerDBListBox "InGameRosterHomePlayersListBox";};
  27.     Int "HomeTeamSelection" {PlayerDragItem "InGameRosterHomePlayer";};
  28.     Int "HomeTeamSelection" {PlayerDragItem "InGameRosterHomePlayerFromCenter";};
  29.     Int "HomeTeamSelection" {PlayerDragItem "InGameRosterHomePlayerFromSmallForward";};
  30.     Int "HomeTeamSelection" {PlayerDragItem "InGameRosterHomePlayerFromPointGuard";};
  31.     Int "HomeTeamSelection" {PlayerDragItem "InGameRosterHomePlayerFromShootingGuard";};
  32.     Int "HomeTeamSelection" {PlayerDragItem "InGameRosterHomePlayerFromPowerForward";};
  33.     Int "HomeTeamSelection" {PlayerDropItem "InGameRosterHomeCourtCenter";};
  34.     Int "HomeTeamSelection" {PlayerDropItem "InGameRosterHomeCourtShootingGuard";};
  35.     Int "HomeTeamSelection" {PlayerDropItem "InGameRosterHomeCourtPointGuard";};
  36.     Int "HomeTeamSelection" {PlayerDropItem "InGameRosterHomeCourtSmallForward";};
  37.     Int "HomeTeamSelection" {PlayerDropItem "InGameRosterHomeCourtPowerForward";};
  38.  
  39.     Int "VisitorTeamSelection" {PlayerDBListBox "InGameRosterAwayPlayersListBox";};
  40.     Int "VisitorTeamSelection" {PlayerDragItem "InGameRosterAwayPlayer";};
  41.     Int "VisitorTeamSelection" {PlayerDragItem "InGameRosterAwayPlayerFromCenter";};
  42.     Int "VisitorTeamSelection" {PlayerDragItem "InGameRosterAwayPlayerFromSmallForward";};
  43.     Int "VisitorTeamSelection" {PlayerDragItem "InGameRosterAwayPlayerFromPointGuard";};
  44.     Int "VisitorTeamSelection" {PlayerDragItem "InGameRosterAwayPlayerFromShootingGuard";};
  45.     Int "VisitorTeamSelection" {PlayerDragItem "InGameRosterAwayPlayerFromPowerForward";};
  46.     Int "VisitorTeamSelection" {PlayerDropItem "InGameRosterAwayCourtCenter";};
  47.     Int "VisitorTeamSelection" {PlayerDropItem "InGameRosterAwayCourtShootingGuard";};
  48.     Int "VisitorTeamSelection" {PlayerDropItem "InGameRosterAwayCourtPointGuard";};
  49.     Int "VisitorTeamSelection" {PlayerDropItem "InGameRosterAwayCourtSmallForward";};
  50.     Int "VisitorTeamSelection" {PlayerDropItem "InGameRosterAwayCourtPowerForward";};
  51.  
  52.     DBEBContentProvider "InGameCoachingHomePointsContentProvider" {
  53.         EditBox "InGameHomePoints";
  54.         Database "PlayerStatsInGameHome";
  55.  
  56.         Format {
  57.             Int Field "nInGameFGMade" Plus Int Field "nInGameFGMade" Plus
  58.             Int Field "nInGame3PTMade" Plus Int Field "nInGameFTMade";
  59.         };
  60.         InitialValue {
  61.             Restrict String Field "szID" Equals " " LinkedToData "HomePlayerDisplayID";
  62.         };
  63.     };
  64.  
  65.     DBEBContentProvider "InGameCoachingHomeAssistsContentProvider" {
  66.         EditBox "InGameHomeAssists";
  67.         Database "PlayerStatsInGameHome";
  68.  
  69.         Format {
  70.             Int Field "nInGameAssists";
  71.         };
  72.         InitialValue {
  73.             Restrict String Field "szID" Equals " " LinkedToData "HomePlayerDisplayID";
  74.         };
  75.     };
  76.  
  77.     DBEBContentProvider "InGameCoachingHomeReboundsContentProvider" {
  78.         EditBox "InGameHomeRebounds";
  79.         Database "PlayerStatsInGameHome";
  80.  
  81.         Format {
  82.             Int Field "nInGameRebounds";
  83.         };
  84.         InitialValue {
  85.             Restrict String Field "szID" Equals " " LinkedToData "HomePlayerDisplayID";
  86.         };
  87.     };
  88.  
  89.     DBEBContentProvider "InGameCoachingHomeFreeThrowsMadeContentProvider" {
  90.         EditBox "InGameHomeFreeThrowsMade";
  91.         Database "PlayerStatsInGameHome";
  92.  
  93.         Format {
  94.             Int Field "nInGameFTMade";
  95.         };
  96.         InitialValue {
  97.             Restrict String Field "szID" Equals " " LinkedToData "HomePlayerDisplayID";
  98.         };
  99.     };
  100.  
  101.     DBEBContentProvider "InGameCoachingHomeFreeThrowsAttemptedContentProvider" {
  102.         EditBox "InGameHomeFreeThrowsAttempted";
  103.         Database "PlayerStatsInGameHome";
  104.  
  105.         Format {
  106.             Int Field "nInGameFTAttempt";
  107.         };
  108.         InitialValue {
  109.             Restrict String Field "szID" Equals " " LinkedToData "HomePlayerDisplayID";
  110.         };
  111.     };
  112.  
  113.     DBEBContentProvider "InGameCoachingHomeBlocksContentProvider" {
  114.         EditBox "InGameHomeBlocks";
  115.         Database "PlayerStatsInGameHome";
  116.  
  117.         Format {
  118.             Int Field "nInGameBlocks";
  119.         };
  120.         InitialValue {
  121.             Restrict String Field "szID" Equals " " LinkedToData "HomePlayerDisplayID";
  122.         };
  123.     };
  124.  
  125.     DBEBContentProvider "InGameCoachingHomeStealsContentProvider" {
  126.         EditBox "InGameHomeSteals";
  127.         Database "PlayerStatsInGameHome";
  128.  
  129.         Format {
  130.             Int Field "nInGameSteals";
  131.         };
  132.         InitialValue {
  133.             Restrict String Field "szID" Equals " " LinkedToData "HomePlayerDisplayID";
  134.         };
  135.     };
  136.  
  137.     DBEBContentProvider "InGameCoachingHomeFoulsContentProvider" {
  138.         EditBox "InGameHomePersonalFouls";
  139.         Database "PlayerStatsInGameHome";
  140.  
  141.         Format {
  142.             Int Field "nInGameFouls";
  143.         };
  144.         InitialValue {
  145.             Restrict String Field "szID" Equals " " LinkedToData "HomePlayerDisplayID";
  146.         };
  147.     };
  148.  
  149.     DBEBContentProvider "InGameCoachingHomePointsPerGameContentProvider" {
  150.         EditBox "InGameHomePointsPerGame";
  151.         Database "PlayerStatsSComposite";
  152.  
  153.         Format {
  154.             Real Field "fPointsPerGame" DecimalPlaces 1;
  155.         };
  156.         InitialValue {
  157.             Restrict String Field "szID" Equals " " LinkedToData "HomePlayerDisplayID";
  158.         };
  159.     };
  160.  
  161.     DBEBContentProvider "InGameCoachingHomeAssistsPerGameContentProvider" {
  162.         EditBox "InGameHomeAssistsPerGame";
  163.         Database "PlayerStatsSComposite";
  164.  
  165.         Format {
  166.             Real Field "nAssists" DecimalPlaces 1 DividedBy Int Field "nGamesPlayed";
  167.         };
  168.         InitialValue {
  169.             Restrict String Field "szID" Equals " " LinkedToData "HomePlayerDisplayID";
  170.         };
  171.     };
  172.  
  173.     DBEBContentProvider "InGameCoachingHomeReboundsPerGameContentProvider" {
  174.         EditBox "InGameHomeReboundsPerGame";
  175.         Database "PlayerStatsSComposite";
  176.  
  177.         Format {
  178.             Real Field "nOffReb" DecimalPlaces 1 Plus Int Field "nDefReb" DividedBy Int Field "nGamesPlayed";
  179.         };
  180.         InitialValue {
  181.             Restrict String Field "szID" Equals " " LinkedToData "HomePlayerDisplayID";
  182.         };
  183.     };
  184.  
  185.     DBEBContentProvider "InGameCoachingHomeFreeThrowPercentageContentProvider" {
  186.         EditBox "InGameHomeFreeThrowPercentage";
  187.         Database "PlayerStatsSComposite";
  188.  
  189.         Format {
  190.             Int Field "nFTMade" Times Int 100 DividedBy Int Field "nFTAttempt";
  191.         };
  192.         InitialValue {
  193.             Restrict String Field "szID" Equals " " LinkedToData "HomePlayerDisplayID";
  194.         };
  195.     };
  196.  
  197.     DBEBContentProvider "InGameCoachingHomeBlocksPerGameContentProvider" {
  198.         EditBox "InGameHomeBlocksPerGame";
  199.         Database "PlayerStatsSComposite";
  200.  
  201.         Format {
  202.             Real Field "nBlocks" DecimalPlaces 1 DividedBy Int Field "nGamesPlayed";
  203.         };
  204.         InitialValue {
  205.             Restrict String Field "szID" Equals " " LinkedToData "HomePlayerDisplayID";
  206.         };
  207.     };
  208.  
  209.     DBEBContentProvider "InGameCoachingHomeStealsPerGameContentProvider" {
  210.         EditBox "InGameHomeStealsPerGame";
  211.         Database "PlayerStatsSComposite";
  212.  
  213.         Format {
  214.             Real Field "nSteals" DecimalPlaces 1 DividedBy Int Field "nGamesPlayed";
  215.         };
  216.         InitialValue {
  217.             Restrict String Field "szID" Equals " " LinkedToData "HomePlayerDisplayID";
  218.         };
  219.     };
  220.  
  221.     DBEBContentProvider "InGameCoachingHomeRatingSpeedContentProvider" {
  222.         EditBox "InGameHomeRatingSpeed";
  223.         Database "AllStarPlayersHome";
  224.  
  225.         Format {
  226.             Int Field "nRtSpeed";
  227.         };
  228.         InitialValue {
  229.             Restrict String Field "szID" Equals " " LinkedToData "HomePlayerDisplayID";
  230.         };
  231.     };
  232.  
  233.     DBEBContentProvider "InGameCoachingHomeRatingShootingContentProvider" {
  234.         EditBox "InGameHomeRatingShooting";
  235.         Database "AllStarPlayersHome";
  236.  
  237.         Format {
  238.             Int Field "nRtShot0_10" Plus Int Field "nRtShot10_15" Plus Int Field "nRtShot15_20" DividedBy Int 3;
  239.         };
  240.         InitialValue {
  241.             Restrict String Field "szID" Equals " " LinkedToData "HomePlayerDisplayID";
  242.         };
  243.     };
  244.  
  245.     DBEBContentProvider "InGameCoachingHomeRating3PointShootingContentProvider" {
  246.         EditBox "InGameHomeRating3PointShooting";
  247.         Database "AllStarPlayersHome";
  248.  
  249.         Format {
  250.             Int Field "nRtShot3Ptr";
  251.         };
  252.         InitialValue {
  253.             Restrict String Field "szID" Equals " " LinkedToData "HomePlayerDisplayID";
  254.         };
  255.     };
  256.  
  257.     DBEBContentProvider "InGameCoachingHomeRatingFreeThrowContentProvider" {
  258.         EditBox "InGameHomeRatingFreeThrow";
  259.         Database "AllStarPlayersHome";
  260.  
  261.         Format {
  262.             Int Field "nRtFreeThrow";
  263.         };
  264.         InitialValue {
  265.             Restrict String Field "szID" Equals " " LinkedToData "HomePlayerDisplayID";
  266.         };
  267.     };
  268.  
  269.     DBEBContentProvider "InGameCoachingHomeRatingReboundContentProvider" {
  270.         EditBox "InGameHomeRatingRebound";
  271.         Database "AllStarPlayersHome";
  272.  
  273.         Format {
  274.             Int Field "nRtRebound";
  275.         };
  276.         InitialValue {
  277.             Restrict String Field "szID" Equals " " LinkedToData "HomePlayerDisplayID";
  278.         };
  279.     };
  280.  
  281.     DBEBContentProvider "InGameCoachingHomeRatingStealContentProvider" {
  282.         EditBox "InGameHomeRatingSteal";
  283.         Database "AllStarPlayersHome";
  284.  
  285.         Format {
  286.             Int Field "nRtDfSteal";
  287.         };
  288.         InitialValue {
  289.             Restrict String Field "szID" Equals " " LinkedToData "HomePlayerDisplayID";
  290.         };
  291.     };
  292.  
  293.     DBEBContentProvider "InGameCoachingHomeRatingBlockContentProvider" {
  294.         EditBox "InGameHomeRatingBlock";
  295.         Database "AllStarPlayersHome";
  296.  
  297.         Format {
  298.             Int Field "nRtDfBlock";
  299.         };
  300.         InitialValue {
  301.             Restrict String Field "szID" Equals " " LinkedToData "HomePlayerDisplayID";
  302.         };
  303.     };
  304.  
  305.     DBEBContentProvider "InGameCoachingHomeRatingClutchContentProvider" {
  306.         EditBox "InGameHomeRatingClutch";
  307.         Database "AllStarPlayersHome";
  308.  
  309.         Format {
  310.             Int Field "nRtClutch";
  311.         };
  312.         InitialValue {
  313.             Restrict String Field "szID" Equals " " LinkedToData "HomePlayerDisplayID";
  314.         };
  315.     };
  316.  
  317.     DBEBContentProvider "InGameCoachingHomeFatigueContentProvider" {
  318.         EditBox "InGameHomeEnergyLevel";
  319.         Database "PlayerStatsInGameHome";
  320.  
  321.         Format {
  322.             Int Field "nFatigue";
  323.         };
  324.         InitialValue {
  325.             Restrict String Field "szID" Equals " " LinkedToData "HomePlayerDisplayID";
  326.         };
  327.     };
  328.  
  329.     DBEBContentProvider "InGameCoachingAwayPointsContentProvider" {
  330.         EditBox "InGameAwayPoints";
  331.         Database "PlayerStatsInGameAway";
  332.  
  333.         Format {
  334.             Int Field "nInGameFGMade" Plus Int Field "nInGameFGMade" Plus
  335.             Int Field "nInGame3PTMade" Plus Int Field "nInGameFTMade";
  336.         };
  337.         InitialValue {
  338.             Restrict String Field "szID" Equals " " LinkedToData "AwayPlayerDisplayID";
  339.         };
  340.     };
  341.  
  342.     DBEBContentProvider "InGameCoachingAwayAssistsContentProvider" {
  343.         EditBox "InGameAwayAssists";
  344.         Database "PlayerStatsInGameAway";
  345.  
  346.         Format {
  347.             Int Field "nInGameAssists";
  348.         };
  349.         InitialValue {
  350.             Restrict String Field "szID" Equals " " LinkedToData "AwayPlayerDisplayID";
  351.         };
  352.     };
  353.  
  354.     DBEBContentProvider "InGameCoachingAwayReboundsContentProvider" {
  355.         EditBox "InGameAwayRebounds";
  356.         Database "PlayerStatsInGameAway";
  357.  
  358.         Format {
  359.             Int Field "nInGameRebounds";
  360.         };
  361.         InitialValue {
  362.             Restrict String Field "szID" Equals " " LinkedToData "AwayPlayerDisplayID";
  363.         };
  364.     };
  365.  
  366.     DBEBContentProvider "InGameCoachingAwayFreeThrowsMadeContentProvider" {
  367.         EditBox "InGameAwayFreeThrowsMade";
  368.         Database "PlayerStatsInGameAway";
  369.  
  370.         Format {
  371.             Int Field "nInGameFTMade";
  372.         };
  373.         InitialValue {
  374.             Restrict String Field "szID" Equals " " LinkedToData "AwayPlayerDisplayID";
  375.         };
  376.     };
  377.  
  378.     DBEBContentProvider "InGameCoachingAwayFreeThrowsAttemptedContentProvider" {
  379.         EditBox "InGameAwayFreeThrowsAttempted";
  380.         Database "PlayerStatsInGameAway";
  381.  
  382.         Format {
  383.             Int Field "nInGameFTAttempt";
  384.         };
  385.         InitialValue {
  386.             Restrict String Field "szID" Equals " " LinkedToData "AwayPlayerDisplayID";
  387.         };
  388.     };
  389.  
  390.     DBEBContentProvider "InGameCoachingAwayBlocksContentProvider" {
  391.         EditBox "InGameAwayBlocks";
  392.         Database "PlayerStatsInGameAway";
  393.  
  394.         Format {
  395.             Int Field "nInGameBlocks";
  396.         };
  397.         InitialValue {
  398.             Restrict String Field "szID" Equals " " LinkedToData "AwayPlayerDisplayID";
  399.         };
  400.     };
  401.  
  402.     DBEBContentProvider "InGameCoachingAwayStealsContentProvider" {
  403.         EditBox "InGameAwaySteals";
  404.         Database "PlayerStatsInGameAway";
  405.  
  406.         Format {
  407.             Int Field "nInGameSteals";
  408.         };
  409.         InitialValue {
  410.             Restrict String Field "szID" Equals " " LinkedToData "AwayPlayerDisplayID";
  411.         };
  412.     };
  413.  
  414.     DBEBContentProvider "InGameCoachingAwayFoulsContentProvider" {
  415.         EditBox "InGameAwayPersonalFouls";
  416.         Database "PlayerStatsInGameAway";
  417.  
  418.         Format {
  419.             Int Field "nInGameFouls";
  420.         };
  421.         InitialValue {
  422.             Restrict String Field "szID" Equals " " LinkedToData "AwayPlayerDisplayID";
  423.         };
  424.     };
  425.  
  426.     DBEBContentProvider "InGameCoachingAwayPointsPerGameContentProvider" {
  427.         EditBox "InGameAwayPointsPerGame";
  428.         Database "PlayerStatsSComposite";
  429.  
  430.         Format {
  431.             Real Field "fPointsPerGame" DecimalPlaces 1;
  432.         };
  433.         InitialValue {
  434.             Restrict String Field "szID" Equals " " LinkedToData "AwayPlayerDisplayID";
  435.         };
  436.     };
  437.  
  438.     DBEBContentProvider "InGameCoachingAwayAssistsPerGameContentProvider" {
  439.         EditBox "InGameAwayAssistsPerGame";
  440.         Database "PlayerStatsSComposite";
  441.  
  442.         Format {
  443.             Real Field "nAssists" DecimalPlaces 1 DividedBy Int Field "nGamesPlayed";
  444.         };
  445.         InitialValue {
  446.             Restrict String Field "szID" Equals " " LinkedToData "AwayPlayerDisplayID";
  447.         };
  448.     };
  449.  
  450.     DBEBContentProvider "InGameCoachingAwayReboundsPerGameContentProvider" {
  451.         EditBox "InGameAwayReboundsPerGame";
  452.         Database "PlayerStatsSComposite";
  453.  
  454.         Format {
  455.             Real Field "nOffReb" DecimalPlaces 1 Plus Int Field "nDefReb" DividedBy Int Field "nGamesPlayed";
  456.         };
  457.         InitialValue {
  458.             Restrict String Field "szID" Equals " " LinkedToData "AwayPlayerDisplayID";
  459.         };
  460.     };
  461.  
  462.     DBEBContentProvider "InGameCoachingAwayFreeThrowPercentageContentProvider" {
  463.         EditBox "InGameAwayFreeThrowPercentage";
  464.         Database "PlayerStatsSComposite";
  465.  
  466.         Format {
  467.             Int Field "nFTMade" Times Int 100 DividedBy Int Field "nFTAttempt";
  468.         };
  469.         InitialValue {
  470.             Restrict String Field "szID" Equals " " LinkedToData "AwayPlayerDisplayID";
  471.         };
  472.     };
  473.  
  474.     DBEBContentProvider "InGameCoachingAwayBlocksPerGameContentProvider" {
  475.         EditBox "InGameAwayBlocksPerGame";
  476.         Database "PlayerStatsSComposite";
  477.  
  478.         Format {
  479.             Real Field "nBlocks" DecimalPlaces 1 DividedBy Int Field "nGamesPlayed";
  480.         };
  481.         InitialValue {
  482.             Restrict String Field "szID" Equals " " LinkedToData "AwayPlayerDisplayID";
  483.         };
  484.     };
  485.  
  486.     DBEBContentProvider "InGameCoachingAwayStealsPerGameContentProvider" {
  487.         EditBox "InGameAwayStealsPerGame";
  488.         Database "PlayerStatsSComposite";
  489.  
  490.         Format {
  491.             Real Field "nSteals" DecimalPlaces 1 DividedBy Int Field "nGamesPlayed";
  492.         };
  493.         InitialValue {
  494.             Restrict String Field "szID" Equals " " LinkedToData "AwayPlayerDisplayID";
  495.         };
  496.     };
  497.  
  498.     DBEBContentProvider "InGameCoachingAwayRatingSpeedContentProvider" {
  499.         EditBox "InGameAwayRatingSpeed";
  500.         Database "AllStarPlayersAway";
  501.  
  502.         Format {
  503.             Int Field "nRtSpeed";
  504.         };
  505.         InitialValue {
  506.             Restrict String Field "szID" Equals " " LinkedToData "AwayPlayerDisplayID";
  507.         };
  508.     };
  509.  
  510.     DBEBContentProvider "InGameCoachingAwayRatingShootingContentProvider" {
  511.         EditBox "InGameAwayRatingShooting";
  512.         Database "AllStarPlayersAway";
  513.  
  514.         Format {
  515.             Int Field "nRtShot0_10" Plus Int Field "nRtShot10_15" Plus Int Field "nRtShot15_20" DividedBy Int 3;
  516.         };
  517.         InitialValue {
  518.             Restrict String Field "szID" Equals " " LinkedToData "AwayPlayerDisplayID";
  519.         };
  520.     };
  521.  
  522.     DBEBContentProvider "InGameCoachingAwayRating3PointShootingContentProvider" {
  523.         EditBox "InGameAwayRating3PointShooting";
  524.         Database "AllStarPlayersAway";
  525.  
  526.         Format {
  527.             Int Field "nRtShot3Ptr";
  528.         };
  529.         InitialValue {
  530.             Restrict String Field "szID" Equals " " LinkedToData "AwayPlayerDisplayID";
  531.         };
  532.     };
  533.  
  534.     DBEBContentProvider "InGameCoachingAwayRatingFreeThrowContentProvider" {
  535.         EditBox "InGameAwayRatingFreeThrow";
  536.         Database "AllStarPlayersAway";
  537.  
  538.         Format {
  539.             Int Field "nRtFreeThrow";
  540.         };
  541.         InitialValue {
  542.             Restrict String Field "szID" Equals " " LinkedToData "AwayPlayerDisplayID";
  543.         };
  544.     };
  545.  
  546.     DBEBContentProvider "InGameCoachingAwayRatingReboundContentProvider" {
  547.         EditBox "InGameAwayRatingRebound";
  548.         Database "AllStarPlayersAway";
  549.  
  550.         Format {
  551.             Int Field "nRtRebound";
  552.         };
  553.         InitialValue {
  554.             Restrict String Field "szID" Equals " " LinkedToData "AwayPlayerDisplayID";
  555.         };
  556.     };
  557.  
  558.     DBEBContentProvider "InGameCoachingAwayRatingStealContentProvider" {
  559.         EditBox "InGameAwayRatingSteal";
  560.         Database "AllStarPlayersAway";
  561.  
  562.         Format {
  563.             Int Field "nRtDfSteal";
  564.         };
  565.         InitialValue {
  566.             Restrict String Field "szID" Equals " " LinkedToData "AwayPlayerDisplayID";
  567.         };
  568.     };
  569.  
  570.     DBEBContentProvider "InGameCoachingAwayRatingBlockContentProvider" {
  571.         EditBox "InGameAwayRatingBlock";
  572.         Database "AllStarPlayersAway";
  573.  
  574.         Format {
  575.             Int Field "nRtDfBlock";
  576.         };
  577.         InitialValue {
  578.             Restrict String Field "szID" Equals " " LinkedToData "AwayPlayerDisplayID";
  579.         };
  580.     };
  581.  
  582.     DBEBContentProvider "InGameCoachingAwayRatingClutchContentProvider" {
  583.         EditBox "InGameAwayRatingClutch";
  584.         Database "AllStarPlayersAway";
  585.  
  586.         Format {
  587.             Int Field "nRtClutch";
  588.         };
  589.         InitialValue {
  590.             Restrict String Field "szID" Equals " " LinkedToData "AwayPlayerDisplayID";
  591.         };
  592.     };
  593.  
  594.     DBEBContentProvider "InGameCoachingAwayFatigueContentProvider" {
  595.         EditBox "InGameAwayEnergyLevel";
  596.         Database "PlayerStatsInGameAway";
  597.  
  598.         Format {
  599.             Int Field "nFatigue";
  600.         };
  601.         InitialValue {
  602.             Restrict String Field "szID" Equals " " LinkedToData "AwayPlayerDisplayID";
  603.         };
  604.     };
  605.  
  606.     DBEBContentProvider "InGameRosterHomePlayerDrag" {
  607.         PlayerDragItem "InGameRosterHomePlayer";
  608.         Database "AllStarPlayersHome";
  609.         Format {
  610.             Int Field "nNum" Digits 2 Chicklet;
  611.         };
  612.         InitialValue {
  613.             Restrict String Field "szID" Equals " " LinkedToData "InGameRosterHomePlayerDragID";
  614.         };
  615.     };
  616.  
  617.     DBEBContentProvider "InGameRosterHomePlayerDragFromCenter" {
  618.         PlayerDragItem "InGameRosterHomePlayerFromCenter";
  619.         Database "AllStarPlayersHome";
  620.         Format {
  621.             Int Field "nNum" Digits 2 Chicklet;
  622.         };
  623.         InitialValue {
  624.             Restrict String Field "szID" Equals " " LinkedToData "InGameRosterHomePlayerDragID";
  625.         };
  626.     };
  627.  
  628.     DBEBContentProvider "InGameRosterHomePlayerDragFromSmallForward" {
  629.         PlayerDragItem "InGameRosterHomePlayerFromSmallForward";
  630.         Database "AllStarPlayersHome";
  631.         Format {
  632.             Int Field "nNum" Digits 2 Chicklet;
  633.         };
  634.         InitialValue {
  635.             Restrict String Field "szID" Equals " " LinkedToData "InGameRosterHomePlayerDragID";
  636.         };
  637.     };
  638.  
  639.     DBEBContentProvider "InGameRosterHomePlayerDragFromPointGuard" {
  640.         PlayerDragItem "InGameRosterHomePlayerFromPointGuard";
  641.         Database "AllStarPlayersHome";
  642.         Format {
  643.             Int Field "nNum" Digits 2 Chicklet;
  644.         };
  645.         InitialValue {
  646.             Restrict String Field "szID" Equals " " LinkedToData "InGameRosterHomePlayerDragID";
  647.         };
  648.     };
  649.  
  650.     DBEBContentProvider "InGameRosterHomePlayerDragFromShootingGuard" {
  651.         PlayerDragItem "InGameRosterHomePlayerFromShootingGuard";
  652.         Database "AllStarPlayersHome";
  653.         Format {
  654.             Int Field "nNum" Digits 2 Chicklet;
  655.         };
  656.         InitialValue {
  657.             Restrict String Field "szID" Equals " " LinkedToData "InGameRosterHomePlayerDragID";
  658.         };
  659.     };
  660.  
  661.     DBEBContentProvider "InGameRosterHomePlayerDragFromPowerForward" {
  662.         PlayerDragItem "InGameRosterHomePlayerFromPowerForward";
  663.         Database "AllStarPlayersHome";
  664.         Format {
  665.             Int Field "nNum" Digits 2 Chicklet;
  666.         };
  667.         InitialValue {
  668.             Restrict String Field "szID" Equals " " LinkedToData "InGameRosterHomePlayerDragID";
  669.         };
  670.     };
  671.  
  672.     DBEBContentProvider "InGameRosterAwayPlayerDrag" {
  673.         PlayerDragItem "InGameRosterAwayPlayer";
  674.         Database "AllStarPlayersAway";
  675.         Format {
  676.             Int Field "nNum" Digits 2 Chicklet;
  677.         };
  678.         InitialValue {
  679.             Restrict String Field "szID" Equals " " LinkedToData "InGameRosterAwayPlayerDragID";
  680.         };
  681.     };
  682.  
  683.     DBEBContentProvider "InGameRosterAwayPlayerDragFromCenter" {
  684.         PlayerDragItem "InGameRosterAwayPlayerFromCenter";
  685.         Database "AllStarPlayersAway";
  686.         Format {
  687.             Int Field "nNum" Digits 2 Chicklet;
  688.         };
  689.         InitialValue {
  690.             Restrict String Field "szID" Equals " " LinkedToData "InGameRosterAwayPlayerDragID";
  691.         };
  692.     };
  693.  
  694.     DBEBContentProvider "InGameRosterAwayPlayerDragFromSmallForward" {
  695.         PlayerDragItem "InGameRosterAwayPlayerFromSmallForward";
  696.         Database "AllStarPlayersAway";
  697.         Format {
  698.             Int Field "nNum" Digits 2 Chicklet;
  699.         };
  700.         InitialValue {
  701.             Restrict String Field "szID" Equals " " LinkedToData "InGameRosterAwayPlayerDragID";
  702.         };
  703.     };
  704.  
  705.     DBEBContentProvider "InGameRosterAwayPlayerDragFromPointGuard" {
  706.         PlayerDragItem "InGameRosterAwayPlayerFromPointGuard";
  707.         Database "AllStarPlayersAway";
  708.         Format {
  709.             Int Field "nNum" Digits 2 Chicklet;
  710.         };
  711.         InitialValue {
  712.             Restrict String Field "szID" Equals " " LinkedToData "InGameRosterAwayPlayerDragID";
  713.         };
  714.     };
  715.  
  716.     DBEBContentProvider "InGameRosterAwayPlayerDragFromShootingGuard" {
  717.         PlayerDragItem "InGameRosterAwayPlayerFromShootingGuard";
  718.         Database "AllStarPlayersAway";
  719.         Format {
  720.             Int Field "nNum" Digits 2 Chicklet;
  721.         };
  722.         InitialValue {
  723.             Restrict String Field "szID" Equals " " LinkedToData "InGameRosterAwayPlayerDragID";
  724.         };
  725.     };
  726.  
  727.     DBEBContentProvider "InGameRosterAwayPlayerDragFromPowerForward" {
  728.         PlayerDragItem "InGameRosterAwayPlayerFromPowerForward";
  729.         Database "AllStarPlayersAway";
  730.         Format {
  731.             Int Field "nNum" Digits 2 Chicklet;
  732.         };
  733.         InitialValue {
  734.             Restrict String Field "szID" Equals " " LinkedToData "InGameRosterAwayPlayerDragID";
  735.         };
  736.     };
  737.  
  738.     DBEBContentProvider "InGameRosterHomePlayerCenter" {
  739.         PlayerDropItem "InGameRosterHomeCourtCenter";
  740.         Database "AllStarPlayersHome";
  741.         Format {
  742.             Int Field "nNum" Digits 2 Chicklet;
  743.             String " ";
  744.             String " ";
  745.             String Field "szFirst";
  746.             String " ";
  747.             String Field "szLast";
  748.         };
  749.         InitialValue {
  750.             Restrict String Field "szOnDeckPos" Equals "C";
  751.             Restrict Int Field "szTeamID" Equals 0 LinkedToData "HomeTeamSelection";
  752.         };
  753.     };
  754.  
  755.     DBEBContentProvider "InGameRosterHomePlayerShootingGuard" {
  756.         PlayerDropItem "InGameRosterHomeCourtShootingGuard";
  757.         Database "AllStarPlayersHome";
  758.         Format {
  759.             Int Field "nNum" Digits 2 Chicklet;
  760.             String " ";
  761.             String " ";
  762.             String Field "szFirst";
  763.             String " ";
  764.             String Field "szLast";
  765.         };
  766.         InitialValue {
  767.             Restrict String Field "szOnDeckPos" Equals "SG";
  768.             Restrict Int Field "szTeamID" Equals 0 LinkedToData "HomeTeamSelection";
  769.         };
  770.     };
  771.  
  772.     DBEBContentProvider "InGameRosterHomePlayerPointGuard" {
  773.         PlayerDropItem "InGameRosterHomeCourtPointGuard";
  774.         Database "AllStarPlayersHome";
  775.         Format {
  776.             Int Field "nNum" Digits 2 Chicklet;
  777.             String " ";
  778.             String " ";
  779.             String Field "szFirst";
  780.             String " ";
  781.             String Field "szLast";
  782.         };
  783.         InitialValue {
  784.             Restrict String Field "szOnDeckPos" Equals "PG";
  785.             Restrict Int Field "szTeamID" Equals 0 LinkedToData "HomeTeamSelection";
  786.         };
  787.     };
  788.  
  789.     DBEBContentProvider "InGameRosterHomePlayerSmallForward" {
  790.         PlayerDropItem "InGameRosterHomeCourtSmallForward";
  791.         Database "AllStarPlayersHome";
  792.         Format {
  793.             Int Field "nNum" Digits 2 Chicklet;
  794.             String " ";
  795.             String " ";
  796.             String Field "szFirst";
  797.             String " ";
  798.             String Field "szLast";
  799.         };
  800.         InitialValue {
  801.             Restrict String Field "szOnDeckPos" Equals "SF";
  802.             Restrict Int Field "szTeamID" Equals 0 LinkedToData "HomeTeamSelection";
  803.         };
  804.     };
  805.  
  806.     DBEBContentProvider "InGameRosterHomePlayerPowerForward" {
  807.         PlayerDropItem "InGameRosterHomeCourtPowerForward";
  808.         Database "AllStarPlayersHome";
  809.         Format {
  810.             Int Field "nNum" Digits 2 Chicklet;
  811.             String " ";
  812.             String " ";
  813.             String Field "szFirst";
  814.             String " ";
  815.             String Field "szLast";
  816.         };
  817.         InitialValue {
  818.             Restrict String Field "szOnDeckPos" Equals "PF";
  819.             Restrict Int Field "szTeamID" Equals 0 LinkedToData "HomeTeamSelection";
  820.         };
  821.     };
  822.  
  823.     DBEBContentProvider "InGameRosterAwayPlayerCenter" {
  824.         PlayerDropItem "InGameRosterAwayCourtCenter";
  825.         Database "AllStarPlayersAway";
  826.         Format {
  827.             Int Field "nNum" Digits 2 Chicklet;
  828.             String " ";
  829.             String " ";
  830.             String Field "szFirst";
  831.             String " ";
  832.             String Field "szLast";
  833.         };
  834.         InitialValue {
  835.             Restrict String Field "szOnDeckPos" Equals "C";
  836.             Restrict Int Field "szTeamID" Equals 0 LinkedToData "VisitorTeamSelection";
  837.         };
  838.     };
  839.  
  840.     DBEBContentProvider "InGameRosterAwayPlayerShootingGuard" {
  841.         PlayerDropItem "InGameRosterAwayCourtShootingGuard";
  842.         Database "AllStarPlayersAway";
  843.         Format {
  844.             Int Field "nNum" Digits 2 Chicklet;
  845.             String " ";
  846.             String " ";
  847.             String Field "szFirst";
  848.             String " ";
  849.             String Field "szLast";
  850.         };
  851.         InitialValue {
  852.             Restrict String Field "szOnDeckPos" Equals "SG";
  853.             Restrict Int Field "szTeamID" Equals 0 LinkedToData "VisitorTeamSelection";
  854.         };
  855.     };
  856.  
  857.     DBEBContentProvider "InGameRosterAwayPlayerPointGuard" {
  858.         PlayerDropItem "InGameRosterAwayCourtPointGuard";
  859.         Database "AllStarPlayersAway";
  860.         Format {
  861.             Int Field "nNum" Digits 2 Chicklet;
  862.             String " ";
  863.             String " ";
  864.             String Field "szFirst";
  865.             String " ";
  866.             String Field "szLast";
  867.         };
  868.         InitialValue {
  869.             Restrict String Field "szOnDeckPos" Equals "PG";
  870.             Restrict Int Field "szTeamID" Equals 0 LinkedToData "VisitorTeamSelection";
  871.         };
  872.     };
  873.  
  874.     DBEBContentProvider "InGameRosterAwayPlayerSmallForward" {
  875.         PlayerDropItem "InGameRosterAwayCourtSmallForward";
  876.         Database "AllStarPlayersAway";
  877.         Format {
  878.             Int Field "nNum" Digits 2 Chicklet;
  879.             String " ";
  880.             String " ";
  881.             String Field "szFirst";
  882.             String " ";
  883.             String Field "szLast";
  884.         };
  885.         InitialValue {
  886.             Restrict String Field "szOnDeckPos" Equals "SF";
  887.             Restrict Int Field "szTeamID" Equals 0 LinkedToData "VisitorTeamSelection";
  888.         };
  889.     };
  890.  
  891.     DBEBContentProvider "InGameRosterAwayPlayerPowerForward" {
  892.         PlayerDropItem "InGameRosterAwayCourtPowerForward";
  893.         Database "AllStarPlayersAway";
  894.         Format {
  895.             Int Field "nNum" Digits 2 Chicklet;
  896.             String " ";
  897.             String " ";
  898.             String Field "szFirst";
  899.             String " ";
  900.             String Field "szLast";
  901.         };
  902.         InitialValue {
  903.             Restrict String Field "szOnDeckPos" Equals "PF";
  904.             Restrict Int Field "szTeamID" Equals 0 LinkedToData "VisitorTeamSelection";
  905.         };
  906.     };
  907.  
  908.     DBLBContentProvider "InGameRosterHomePlayersDBLBCP" {
  909.         PlayerDBListBox "InGameRosterHomePlayersListBox";
  910.         Database "AllStarPlayersHome";
  911.         Format {
  912.             String Field "szFirst" Tab;
  913.             String " ";
  914.             String Field "szLast";
  915.             String Field "szPos" Tab;
  916.             Int Field "nNum" Digits 2 Tab Chicklet;
  917.         };
  918.         InitialValue {
  919.             Restrict Int Field "szTeamID" Equals 0 LinkedToData "HomeTeamSelection";
  920.             Restrict Int Field "nActive" Equals 1;
  921.             Restrict Int Field "nFouledOut" Equals 0;
  922.             Restrict String Field "szStartPos" Equals "";
  923.             SortBy String Field "szLast";
  924.         };
  925.     };
  926.  
  927.     DBLBContentProvider "InGameRosterAwayPlayersDBLBCP" {
  928.         PlayerDBListBox "InGameRosterAwayPlayersListBox";
  929.         Database "AllStarPlayersAway";
  930.         Format {
  931.             String Field "szFirst" Tab;
  932.             String " ";
  933.             String Field "szLast";
  934.             String Field "szPos" Tab;
  935.             Int Field "nNum" Digits 2 Tab Chicklet;
  936.         };
  937.         InitialValue {
  938.             Restrict Int Field "szTeamID" Equals 0 LinkedToData "VisitorTeamSelection";
  939.             Restrict Int Field "nActive" Equals 1;
  940.             Restrict Int Field "nFouledOut" Equals 0;
  941.             Restrict String Field "szStartPos" Equals "";
  942.             SortBy String Field "szLast";
  943.         };
  944.     };
  945.  
  946.     DBEBContentProvider "InGameHomeCenter" {
  947.         PlayerDropItem "InGameHomeCenter";
  948.         Database "AllStarPlayersHome";
  949.         Format {
  950.             String " ";
  951.             String " ";
  952.             String Field "szFirst";
  953.             String " ";
  954.             String Field "szLast";
  955.         };
  956.         InitialValue {
  957.             Restrict String Field "szStartPos" Equals "C";
  958.             Restrict Int Field "szTeamID" Equals 0 LinkedToData "HomeTeamSelection";
  959.         };
  960.     };
  961.  
  962.     DBEBContentProvider "InGameHomePowerForward" {
  963.         PlayerDropItem "InGameHomePowerForward";
  964.         Database "AllStarPlayersHome";
  965.         Format {
  966.             String " ";
  967.             String " ";
  968.             String Field "szFirst";
  969.             String " ";
  970.             String Field "szLast";
  971.         };
  972.         InitialValue {
  973.             Restrict String Field "szStartPos" Equals "PF";
  974.             Restrict Int Field "szTeamID" Equals 0 LinkedToData "HomeTeamSelection";
  975.         };
  976.     };
  977.  
  978.     DBEBContentProvider "InGameHomeSmallForward" {
  979.         PlayerDropItem "InGameHomeSmallForward";
  980.         Database "AllStarPlayersHome";
  981.         Format {
  982.             String " ";
  983.             String " ";
  984.             String Field "szFirst";
  985.             String " ";
  986.             String Field "szLast";
  987.         };
  988.         InitialValue {
  989.             Restrict String Field "szStartPos" Equals "SF";
  990.             Restrict Int Field "szTeamID" Equals 0 LinkedToData "HomeTeamSelection";
  991.         };
  992.     };
  993.  
  994.     DBEBContentProvider "InGameHomeShootingGuard" {
  995.         PlayerDropItem "InGameHomeShootingGuard";
  996.         Database "AllStarPlayersHome";
  997.         Format {
  998.             String " ";
  999.             String " ";
  1000.             String Field "szFirst";
  1001.             String " ";
  1002.             String Field "szLast";
  1003.         };
  1004.         InitialValue {
  1005.             Restrict String Field "szStartPos" Equals "SG";
  1006.             Restrict Int Field "szTeamID" Equals 0 LinkedToData "HomeTeamSelection";
  1007.         };
  1008.     };
  1009.  
  1010.     DBEBContentProvider "InGameHomePointGuard" {
  1011.         PlayerDropItem "InGameHomePointGuard";
  1012.         Database "AllStarPlayersHome";
  1013.         Format {
  1014.             String " ";
  1015.             String " ";
  1016.             String Field "szFirst";
  1017.             String " ";
  1018.             String Field "szLast";
  1019.         };
  1020.         InitialValue {
  1021.             Restrict String Field "szStartPos" Equals "PG";
  1022.             Restrict Int Field "szTeamID" Equals 0 LinkedToData "HomeTeamSelection";
  1023.         };
  1024.     };
  1025.  
  1026.     DBEBContentProvider "InGameAwayCenter" {
  1027.         PlayerDropItem "InGameAwayCenter";
  1028.         Database "AllStarPlayersAway";
  1029.         Format {
  1030.             String " ";
  1031.             String " ";
  1032.             String Field "szFirst";
  1033.             String " ";
  1034.             String Field "szLast";
  1035.         };
  1036.         InitialValue {
  1037.             Restrict String Field "szStartPos" Equals "C";
  1038.             Restrict Int Field "szTeamID" Equals 0 LinkedToData "VisitorTeamSelection";
  1039.         };
  1040.     };
  1041.  
  1042.     DBEBContentProvider "InGameAwayPowerForward" {
  1043.         PlayerDropItem "InGameAwayPowerForward";
  1044.         Database "AllStarPlayersAway";
  1045.         Format {
  1046.             String " ";
  1047.             String " ";
  1048.             String Field "szFirst";
  1049.             String " ";
  1050.             String Field "szLast";
  1051.         };
  1052.         InitialValue {
  1053.             Restrict String Field "szStartPos" Equals "PF";
  1054.             Restrict Int Field "szTeamID" Equals 0 LinkedToData "VisitorTeamSelection";
  1055.         };
  1056.     };
  1057.  
  1058.     DBEBContentProvider "InGameAwaySmallForward" {
  1059.         PlayerDropItem "InGameAwaySmallForward";
  1060.         Database "AllStarPlayersAway";
  1061.         Format {
  1062.             String " ";
  1063.             String " ";
  1064.             String Field "szFirst";
  1065.             String " ";
  1066.             String Field "szLast";
  1067.         };
  1068.         InitialValue {
  1069.             Restrict String Field "szStartPos" Equals "SF";
  1070.             Restrict Int Field "szTeamID" Equals 0 LinkedToData "VisitorTeamSelection";
  1071.         };
  1072.     };
  1073.  
  1074.     DBEBContentProvider "InGameAwayShootingGuard" {
  1075.         PlayerDropItem "InGameAwayShootingGuard";
  1076.         Database "AllStarPlayersAway";
  1077.         Format {
  1078.             String " ";
  1079.             String " ";
  1080.             String Field "szFirst";
  1081.             String " ";
  1082.             String Field "szLast";
  1083.         };
  1084.         InitialValue {
  1085.             Restrict String Field "szStartPos" Equals "SG";
  1086.             Restrict Int Field "szTeamID" Equals 0 LinkedToData "VisitorTeamSelection";
  1087.         };
  1088.     };
  1089.  
  1090.     DBEBContentProvider "InGameAwayPointGuard" {
  1091.         PlayerDropItem "InGameAwayPointGuard";
  1092.         Database "AllStarPlayersAway";
  1093.         Format {
  1094.             String " ";
  1095.             String " ";
  1096.             String Field "szFirst";
  1097.             String " ";
  1098.             String Field "szLast";
  1099.         };
  1100.         InitialValue {
  1101.             Restrict String Field "szStartPos" Equals "PG";
  1102.             Restrict Int Field "szTeamID" Equals 0 LinkedToData "VisitorTeamSelection";
  1103.         };
  1104.     };
  1105. };
  1106.  
  1107. //********************************
  1108. //  Images
  1109. //********************************
  1110. Image "InGameOnOffEnabled" {
  1111.     Filename "OffBut";
  1112. };
  1113. Image "InGameOnOffFocused" {
  1114.     Filename "Focus";
  1115. };
  1116. Image "InGameOnOffArmed" {
  1117.     Filename "OnBut";
  1118. };
  1119. Image "InGameRosterRosterBack2" {
  1120.     Filename "Roster2";    
  1121. };
  1122.  
  1123. Image "InGameRosterRosterBack1" {
  1124.     Filename "Roster1";
  1125. };
  1126.  
  1127. Image "InGameRosterRosterUpEnabled" {
  1128.     Filename "scrolup";
  1129. };
  1130. Image "InGameRosterRosterUpPushed" {
  1131.     Filename "arpushup";
  1132. };
  1133. Image "InGameRosterRosterUpFocused" {
  1134.     Filename "arfocup";
  1135. };
  1136.  
  1137. Image "InGameRosterRosterDownEnabled" {
  1138.     Filename "scrldwn";
  1139. };
  1140. Image "InGameRosterRosterDownPushed" {
  1141.     Filename "arpushdn";
  1142. };
  1143. Image "InGameRosterRosterDownFocused" {
  1144.     Filename "arfocdn";
  1145. };
  1146.  
  1147. Image "InGameRosterRosterThumb" {
  1148.     Filename "spin";
  1149. };
  1150.  
  1151. Image "InGameRosterCourt" {
  1152.     Filename "court";
  1153.     
  1154. };
  1155.  
  1156. Image "InGameRosterLogoBox" {
  1157.     Filename "clogobx";
  1158.     Position [100, 0];
  1159.     
  1160. };
  1161.  
  1162. Image "InGameRosterHomeLogoArmed" {
  1163.     Filename "homearm";
  1164. };
  1165.  
  1166. Image "InGameRosterHomeLogoEnabled" {
  1167.     Filename "homenab";
  1168. };
  1169. Image "InGameRosterHomeLogoFocused" {
  1170.     Filename "homefoc";
  1171. };
  1172.  
  1173. Image "InGameRosterAwayLogoArmed" {
  1174.     Filename "awayarm";
  1175.     Position [-14, 0];
  1176. };
  1177.  
  1178. Image "InGameRosterAwayLogoEnabled" {
  1179.     Filename "awayena";
  1180. };
  1181. Image "InGameRosterAwayLogoFocused" {
  1182.     Filename "awayFoc";
  1183.     position [-14, 0];
  1184. };
  1185.  
  1186. Image "InGameRosterPlayerBack" {
  1187.     Filename "pictbox";    
  1188. };
  1189.  
  1190. Image "InGameRosterNonTransparentBackground"
  1191. {
  1192.     Position [105, 90];
  1193.     Filename "bckrnd";
  1194. };
  1195.  
  1196. Image "IGCoachingRosterStatsScrollBarLine" {
  1197.     Filename "ScrolBar";
  1198.     Position [6, 3];
  1199. };
  1200.  
  1201. Image "IGCoachingRosterStatsScrollBarUpEnabled" {
  1202.     Filename "ArrowUp";
  1203. };
  1204. Image "IGCoachingRosterStatsScrollBarUpFocused" {
  1205.     Filename "arr_upf";
  1206. };
  1207. Image "IGCoachingRosterStatsScrollBarUpPushed" {
  1208.     Filename "arr_upp";
  1209. };
  1210.  
  1211. Image "IGCoachingRosterStatsScrollBarDownEnabled" {
  1212.     Filename "ArrowDn";
  1213. };
  1214. Image "IGCoachingRosterStatsScrollBarDownFocused" {
  1215.     Filename "arr_dwnf";
  1216. };
  1217. Image "IGCoachingRosterStatsScrollBarDownPushed" {
  1218.     Filename "arr_dwnp";
  1219. };
  1220.  
  1221. Image "IGCoachingRosterStatsScrollBarThumb" {
  1222.     Filename "knob";
  1223. };
  1224.  
  1225.  
  1226. //********************************
  1227. //  Fonts
  1228. //********************************
  1229. Font "InGameRosterHomeListBox" {
  1230.     Filename "vlistfnt";
  1231.     Translate " 1234567890`QWERTYUIOPASDFGHJKL'ZXCVBNM." "qwertyuiopasdfghjklzxcvbnm-";
  1232.     Kerning 1;
  1233.     VerticalKerning 15;
  1234. };
  1235.  
  1236. Font "InGameRosterAwayListBox" {
  1237.     Filename "vlistfnt";
  1238.     Translate " 1234567890`QWERTYUIOPASDFGHJKL'ZXCVBNM." "qwertyuiopasdfghjklzxcvbnm-";
  1239.     Kerning 1;
  1240.     VerticalKerning 15;
  1241. };
  1242. Font "InGameOnOffButton" {
  1243.     Filename "OnFnt";
  1244.     Translate " ABCDEFGHIJKLMNOPQRSTUVWXYZ";
  1245.     Kerning 0;
  1246. };
  1247. Font "InGameTitleFont" {
  1248.     Filename "yelfnt";
  1249.     Translate " ABCDEFGHIJKLMNOPQRSTUVWXYZ";
  1250.     Kerning 1;
  1251. };
  1252.  
  1253. Font "InGameCoachingScoreFont" {
  1254.     Filename "gentext";
  1255.     Translate " ABCDEFGHIJKLMNOPQRSTUVWXYZ" "abcdefghijklmnopqrstuvwxyz" "1234567890.:%/";
  1256.     Kerning 1;
  1257.     VerticalKerning 12;
  1258. };
  1259.  
  1260.  
  1261. //********************************
  1262. //  Chicklets
  1263. //********************************
  1264. Chicklet "InGameRosterHome" {
  1265.     Radius 9.65;
  1266.  
  1267.     //Knicks
  1268.     Inside Color [230, 86, 30];
  1269.     Outside Color [15, 59, 138];
  1270.     //Spurs
  1271.     Inside Color [0, 166, 167];
  1272.     Outside Color [235, 95, 11];
  1273.     //Sixers
  1274.     Inside Color [136, 0, 5];
  1275.     Outside Color [247, 247, 247];
  1276.     //Bucks
  1277.     Inside Color [48, 115, 65];
  1278.     Outside Color [74, 24, 99];
  1279.     //Bulls
  1280.     Inside Color [118, 0, 0];
  1281.     Outside Color [247, 247, 247];
  1282.     //Cavs
  1283.     Inside Color [0, 74, 165];
  1284.     Outside Color [247, 247, 247];
  1285.     //Celtics
  1286.     Inside Color [0, 82, 49];
  1287.     Outside Color [147, 147, 147];
  1288.     //Clippers
  1289.     Inside Color [0, 29, 154];
  1290.     Outside Color [157, 0, 0];
  1291.     //Grizzles
  1292.     Inside Color [0, 137, 143];
  1293.     Outside Color [205, 20, 31];
  1294.     //Hawks
  1295.     Inside Color [165, 8, 0];
  1296.     Outside Color [242, 201, 0];
  1297.     //Heat
  1298.     Inside Color [115, 8, 8];
  1299.     Outside Color [248, 210, 30];
  1300.     //Hornets
  1301.     Inside Color [59, 31, 128];
  1302.     Outside Color [23, 127, 142];
  1303.     //Jazz
  1304.     Inside Color [65, 32, 129];
  1305.     Outside Color [205, 133, 107];
  1306.     //Kings
  1307.     Inside Color [41, 24, 107];
  1308.     Outside Color [247, 247, 247];
  1309.     //Lakers
  1310.     Inside Color [255, 186, 0];
  1311.     Outside Color [94, 61, 127];
  1312.     //Magic
  1313.     Inside Color [18, 68, 182];
  1314.     Outside Color [198, 198, 198];
  1315.     //Mavs
  1316.     Inside Color [0, 66, 107];
  1317.     Outside Color [0, 90, 66];
  1318.     //Nets
  1319.     Inside Color [172, 0, 0];
  1320.     Outside Color [0, 55, 111];
  1321.     //Nuggets
  1322.     Inside Color [156, 0, 8];
  1323.     Outside Color [33, 60, 110];
  1324.     //Pacers
  1325.     Inside Color [10, 10, 79];
  1326.     Outside Color [184, 155, 9];
  1327.     //Pistons
  1328.     Inside Color [0, 107, 132];
  1329.     Outside Color [178, 13, 16];  
  1330.     //Raptors
  1331.     Inside Color [41, 24, 107];
  1332.     Outside Color [182, 0, 39];
  1333.     //Rockets
  1334.     Inside Color [46, 100, 157];
  1335.     Outside Color [206, 0, 44];
  1336.     //Suns
  1337.     Inside Color [236, 68, 12];
  1338.     Outside Color [70, 22, 207];
  1339.     //Sonics
  1340.     Inside Color [176, 106, 47];
  1341.     Outside Color [0, 70, 23];
  1342.     //TWolves
  1343.     Inside Color [0, 99, 74];
  1344.     Outside Color [198, 198, 198];
  1345.     //Blazers
  1346.     Inside Color [198, 24, 8];
  1347.     Outside Color [198, 198, 198];
  1348.     //Warriors
  1349.     Inside Color [19, 33, 78];
  1350.     Outside Color [239, 157, 0];
  1351.     //Wizards
  1352.     Inside Color [181, 115, 57];
  1353.     Outside Color [0, 68, 112];
  1354. };
  1355.  
  1356. Chicklet "InGameRosterAway" {
  1357.     Radius 9.65;
  1358.  
  1359.     //Knicks
  1360.     Inside Color [15, 59, 138];
  1361.     Outside Color [230, 86, 30];
  1362.     //Spurs
  1363.     Inside Color [235, 95, 112];
  1364.     Outside Color [0, 166, 167];
  1365.     //Sixers
  1366.     Inside Color [8, 8, 8];
  1367.     Outside Color [136, 0, 5];
  1368.     //Bucks
  1369.     Inside Color [74, 24, 99];
  1370.     Outside Color [16, 49, 16];
  1371.     //Bulls
  1372.     Inside Color [118, 0, 0];
  1373.     Outside Color [247, 247, 247];
  1374.     //Cavs
  1375.     Inside Color [8, 8, 8];
  1376.     Outside Color [0, 74, 165];
  1377.     //Celtics
  1378.     Inside Color [0, 82, 49];
  1379.     Outside Color [147, 147, 147];
  1380.     //Clippers
  1381.     Inside Color [157, 0, 0];
  1382.     Outside Color [0, 29, 154];
  1383.     //Grizzles
  1384.     Inside Color [0, 137, 143];
  1385.     Outside Color [162, 93, 35];
  1386.     //Hawks
  1387.     Inside Color [165, 0, 0];
  1388.     Outside Color [171, 109, 51];
  1389.     //Heat
  1390.     Inside Color [8, 8, 8];
  1391.     Outside Color [147, 18, 18];
  1392.     //Hornets
  1393.     Inside Color [23, 127, 142];
  1394.     Outside Color [59, 31, 128];
  1395.     //Jazz
  1396.     Inside Color [65, 32, 129];
  1397.     Outside Color [29, 172, 229];
  1398.     //Kings
  1399.     Inside Color [8, 8, 8];
  1400.     Outside Color [41, 24, 107];
  1401.     //Lakers
  1402.     Inside Color [94, 61, 127];
  1403.     Outside Color [255, 186, 16];
  1404.     //Magic
  1405.     Inside Color [8, 8, 8];
  1406.     Outside Color [18, 68, 182];
  1407.     //Mavs
  1408.     Inside Color [0, 90, 66];
  1409.     Outside Color [0, 66, 107];
  1410.     //Nets
  1411.     Inside Color [0, 33, 66];
  1412.     Outside Color [172, 0, 0];
  1413.     //Nuggets
  1414.     Inside Color [20, 36, 66];
  1415.     Outside Color [156, 0, 8];
  1416.     //Pacers
  1417.     Inside Color [10, 10, 79];
  1418.     Outside Color [184, 155, 9];
  1419.     //Pistons
  1420.     Inside Color [0, 107, 132];
  1421.     Outside Color [214, 156, 33];
  1422.     //Raptors
  1423.     Inside Color [41, 24, 107];
  1424.     Outside Color [163, 0, 3];
  1425.     //Rockets
  1426.     Inside Color [14, 28, 112];
  1427.     Outside Color [206, 0, 44];
  1428.     //Suns
  1429.     Inside Color [44, 14, 130];
  1430.     Outside Color [212, 33, 33];
  1431.     //Sonics
  1432.     Inside Color [0, 57, 24];
  1433.     Outside Color [108, 0, 0];
  1434.     //TWolves
  1435.     Inside Color [8, 8, 8];
  1436.     Outside Color [0, 121, 88];
  1437.     //Blazers
  1438.     Inside Color [8, 8, 8];
  1439.     Outside Color [198, 24, 8];
  1440.     //Warriors
  1441.     Inside Color [239, 157, 0];
  1442.     Outside Color [30, 52, 123];
  1443.     //Wizards
  1444.     Inside Color [0, 68, 112];
  1445.     Outside Color [181, 115, 57];
  1446. };
  1447.  
  1448. //********************************
  1449. //  Styles
  1450. //********************************
  1451. Style "InGameCoachingGeneralText" {
  1452.     Font "InGameCoachingScoreFont";
  1453. };
  1454.  
  1455. Style "InGameRosterHomePlayersListBoxStyle" {
  1456.     Font "InGameRosterHomeListBox";
  1457.     Chicklet "InGameRosterHome";
  1458. };
  1459.  
  1460. Style "InGameRosterAwayPlayersListBoxStyle" {
  1461.     Font "InGameRosterAwayListBox";
  1462.     Chicklet "InGameRosterAway";
  1463. };
  1464.  
  1465. Style "InGameRosterHomePlayersDragItemStyle" {
  1466.     Font "InGameRosterHomeListBox";
  1467.     Chicklet "InGameRosterHome";
  1468. };
  1469.  
  1470. Style "InGameRosterAwayPlayersDragItemStyle" {
  1471.     Font "InGameRosterAwayListBox";
  1472.     Chicklet "InGameRosterAway";
  1473. };
  1474.  
  1475. Style "InGameRosterHomePlayersDropItemStyle" {
  1476.     Font "InGameRosterHomeListBox";
  1477.     Chicklet "InGameRosterHome";
  1478. };
  1479.  
  1480. Style "InGameRosterAwayPlayersDropItemStyle" {
  1481.     Font "InGameRosterAwayListBox";
  1482.     Chicklet "InGameRosterAway";
  1483. };
  1484.  
  1485. Style "InGameRosterRosterStyle" {
  1486.     Image "InGameRosterRosterBack2";
  1487.     Image "InGameRosterRosterBack1";
  1488. };
  1489.  
  1490. ButtonStyle "InGameRosterRosterUp" {
  1491.     Enabled Image "InGameRosterRosterUpEnabled";
  1492.     Focused Image "InGameRosterRosterUpFocused";
  1493.     Pushed Image "InGameRosterRosterUpPushed";
  1494. };
  1495.  
  1496. ButtonStyle "InGameRosterRosterDown" {
  1497.     Enabled Image "InGameRosterRosterDownEnabled";
  1498.     Focused Image "InGameRosterRosterDownFocused";
  1499.     Pushed Image "InGameRosterRosterDownPushed";
  1500. };
  1501.  
  1502. Style "InGameRosterCourtStyle" {
  1503.     Image "InGameRosterCourt";
  1504. };
  1505.  
  1506. Style "InGameRosterLogoBoxStyle" {
  1507.     Image "InGameRosterLogoBox";
  1508. };
  1509.  
  1510. ButtonStyle "InGameRosterHomeLogo" {
  1511.     Enabled Image "InGameRosterHomeLogoEnabled";
  1512.     Armed Image "InGameRosterHomeLogoArmed";
  1513.     Focused Image "InGameRosterHomeLogoFocused";
  1514.     PushedAndArmed Image "InGameRosterHomeLogoArmed";
  1515. };
  1516.  
  1517. ButtonStyle "InGameRosterAwayLogo" {
  1518.     Enabled Image "InGameRosterAwayLogoEnabled";
  1519.     Armed Image "InGameRosterAwayLogoArmed";
  1520.     Focused Image "InGameRosterAwayLogoFocused";
  1521.     PushedAndArmed Image "InGameRosterAwayLogoArmed";
  1522. };
  1523.  
  1524. Style "InGameRosterPlayersBackStyle" {
  1525.     Image "InGameRosterPlayerBack";
  1526. };
  1527.  
  1528. GroupStyle "InGameRosterNonTransparentBckrnd" {
  1529.     Image "InGameRosterNonTransparentBackground";
  1530. };
  1531.  
  1532. Style "InGameCurrentStyle" {
  1533.     Font "InGameRosterHomeListBox";
  1534. };
  1535. ButtonStyle "InGameOnOffButton" {
  1536.     Enabled Image "InGameOnOffEnabled";
  1537.     Focused Image "InGameOnOffFocused";
  1538.     Armed Image "InGameOnOffArmed";
  1539.     Enabled Font "InGameOnOffButton";
  1540. };
  1541. Style "InGameTitleStyle" {
  1542.     Font "InGameTitleFont";
  1543. };
  1544.  
  1545. Style "IGCoachingRosterStatsScrollBar" {
  1546.     Image "IGCoachingRosterStatsScrollBarLine";
  1547. };
  1548.  
  1549. ButtonStyle "IGCoachingRosterStatsScrollBarUp" {
  1550.     Enabled Image "IGCoachingRosterStatsScrollBarUpEnabled";
  1551.     Focused Image "IGCoachingRosterStatsScrollBarUpFocused";
  1552.     Pushed Image "IGCoachingRosterStatsScrollBarUpPushed";
  1553.  
  1554. };
  1555.  
  1556. ButtonStyle "IGCoachingRosterStatsScrollBarDown" {
  1557.     Enabled Image "IGCoachingRosterStatsScrollBarDownEnabled";
  1558.     Focused Image "IGCoachingRosterStatsScrollBarDownFocused";
  1559.     Pushed Image "IGCoachingRosterStatsScrollBarDownPushed";
  1560. };
  1561.  
  1562. //********************************
  1563. //  Buttons
  1564. //********************************
  1565. Button "InGameRosterHomeRosterUp" {
  1566.     ButtonStyle "InGameRosterRosterUp";
  1567. };
  1568.  
  1569. Button "InGameRosterHomeRosterDown" {
  1570.     ButtonStyle "InGameRosterRosterDown";
  1571.     Position [0, 181];
  1572. };
  1573.  
  1574. Button "InGameRosterAwayRosterUp" {
  1575.     ButtonStyle "InGameRosterRosterUp";
  1576. };
  1577.  
  1578. Button "InGameRosterAwayRosterDown" {
  1579.     ButtonStyle "InGameRosterRosterDown";
  1580.     Position [0, 181];
  1581. };
  1582.  
  1583. CheckButton "InGameRosterHomeLogo" {
  1584.     ButtonStyle "InGameRosterHomeLogo";
  1585. };
  1586.  
  1587. CheckButton "InGameRosterAwayLogo" {
  1588.     ButtonStyle "InGameRosterAwayLogo";
  1589.     Position [59, 0];
  1590. };
  1591.  
  1592. Button "IGCoachingRosterStatsScrollBarUpHome" {
  1593.     ButtonStyle "IGCoachingRosterStatsScrollBarUp";
  1594.  
  1595.     position [0,0];
  1596. };
  1597.  
  1598. Button "IGCoachingRosterStatsScrollBarDownHome" {
  1599.     ButtonStyle "IGCoachingRosterStatsScrollBarDown";
  1600.  
  1601.     Position [0, 130];
  1602. };
  1603.  
  1604. Button "IGCoachingRosterStatsScrollBarUpAway" {
  1605.     ButtonStyle "IGCoachingRosterStatsScrollBarUp";
  1606.  
  1607.     position [0,0];
  1608. };
  1609.  
  1610. Button "IGCoachingRosterStatsScrollBarDownAway" {
  1611.     ButtonStyle "IGCoachingRosterStatsScrollBarDown";
  1612.  
  1613.     Position [0, 130];
  1614. };
  1615.  
  1616.  
  1617. //********************************
  1618. //  Edit Box
  1619. //********************************
  1620. EditBox "InGameHomeCurrentStatsTitle" {
  1621.     Style "InGameCoachingGeneralText";
  1622.     Position [0, 0];
  1623.     Size [150, 16];
  1624.  
  1625.     String "GAME STATISTICS" {
  1626.         Position [75, 7];
  1627.         Justify CenterCenter;
  1628.     };
  1629. };
  1630.  
  1631. EditBox "InGameHomePointsTitle" {
  1632.     Style "InGameCoachingGeneralText";
  1633.     Position [0, 0];
  1634.     Size [100, 14];
  1635.  
  1636.     String "PTS" {
  1637.         Position [0, 7];
  1638.         Justify CenterLeft;
  1639.     };
  1640. };
  1641.  
  1642. EditBox "InGameHomePoints" {
  1643.     Style "InGameCoachingGeneralText";
  1644.     Position [100, 0];
  1645.     Size [50, 14];
  1646.  
  1647.     String "100" {
  1648.         Position [50, 7];
  1649.         Justify CenterRight;
  1650.     };
  1651. };
  1652.  
  1653. EditBox "InGameHomeAssistsTitle" {
  1654.     Style "InGameCoachingGeneralText";
  1655.     Position [0, 0];
  1656.     Size [100, 14];
  1657.  
  1658.     String "AST" {
  1659.         Position [0, 7];
  1660.         Justify CenterLeft;
  1661.     };
  1662. };
  1663.  
  1664. EditBox "InGameHomeAssists" {
  1665.     Style "InGameCoachingGeneralText";
  1666.     Position [100, 0];
  1667.     Size [50, 14];
  1668.  
  1669.     String "100" {
  1670.         Position [50, 7];
  1671.         Justify CenterRight;
  1672.     };
  1673. };
  1674.  
  1675. EditBox "InGameHomeReboundsTitle" {
  1676.     Style "InGameCoachingGeneralText";
  1677.     Position [0, 0];
  1678.     Size [100, 14];
  1679.  
  1680.     String "REB" {
  1681.         Position [0, 7];
  1682.         Justify CenterLeft;
  1683.     };
  1684. };
  1685.  
  1686. EditBox "InGameHomeRebounds" {
  1687.     Style "InGameCoachingGeneralText";
  1688.     Position [100, 0];
  1689.     Size [50, 14];
  1690.  
  1691.     String "100" {
  1692.         Position [50, 7];
  1693.         Justify CenterRight;
  1694.     };
  1695. };
  1696.  
  1697. EditBox "InGameHomeFreeThrowsTitle" {
  1698.     Style "InGameCoachingGeneralText";
  1699.     Position [0, 0];
  1700.     Size [120, 14];
  1701.  
  1702.     String "FTM/A" {
  1703.         Position [0, 7];
  1704.         Justify CenterLeft;
  1705.     };
  1706. };
  1707.  
  1708. EditBox "InGameHomeFreeThrowsMade" {
  1709.     Style "InGameCoachingGeneralText";
  1710.     Position [125, 0];
  1711.     Size [10, 14];
  1712.  
  1713.     String "10" {
  1714.         Position [10, 7];
  1715.         Justify CenterRight;
  1716.     };
  1717. };
  1718.  
  1719. EditBox "InGameHomeFreeThrowsSeparator" {
  1720.     Style "InGameCoachingGeneralText";
  1721.     Position [135, 0];
  1722.     Size [5, 14];
  1723.  
  1724.     String "/" {
  1725.         Position [0, 7];
  1726.         Justify CenterLeft;
  1727.     };
  1728. };
  1729.  
  1730. EditBox "InGameHomeFreeThrowsAttempted" {
  1731.     Style "InGameCoachingGeneralText";
  1732.     Position [140, 0];
  1733.     Size [10, 14];
  1734.  
  1735.     String "10" {
  1736.         Position [10, 7];
  1737.         Justify CenterRight;
  1738.     };
  1739. };
  1740.  
  1741. EditBox "InGameHomeBlocksTitle" {
  1742.     Style "InGameCoachingGeneralText";
  1743.     Position [0, 0];
  1744.     Size [50, 14];
  1745.  
  1746.     String "BLK" {
  1747.         Position [0, 7];
  1748.         Justify CenterLeft;
  1749.     };
  1750. };
  1751.  
  1752. EditBox "InGameHomeBlocks" {
  1753.     Style "InGameCoachingGeneralText";
  1754.     Position [135, 0];
  1755.     Size [15, 14];
  1756.  
  1757.     String "10" {
  1758.         Position [15, 7];
  1759.         Justify CenterRight;
  1760.     };
  1761. };
  1762.  
  1763. EditBox "InGameHomeStealsTitle" {
  1764.     Style "InGameCoachingGeneralText";
  1765.     Position [0, 0];
  1766.     Size [50, 14];
  1767.  
  1768.     String "STL" {
  1769.         Position [0, 7];
  1770.         Justify CenterLeft;
  1771.     };
  1772. };
  1773.  
  1774. EditBox "InGameHomeSteals" {
  1775.     Style "InGameCoachingGeneralText";
  1776.     Position [135, 0];
  1777.     Size [15, 14];
  1778.  
  1779.     String "10" {
  1780.         Position [15, 7];
  1781.         Justify CenterRight;
  1782.     };
  1783. };
  1784.  
  1785. EditBox "InGameHomePersonalFoulsTitle" {
  1786.     Style "InGameCoachingGeneralText";
  1787.     Position [0, 0];
  1788.     Size [120, 14];
  1789.  
  1790.     String "FOULS" {
  1791.         Position [0, 7];
  1792.         Justify CenterLeft;
  1793.     };
  1794. };
  1795.  
  1796. EditBox "InGameHomePersonalFouls" {
  1797.     Style "InGameCoachingGeneralText";
  1798.     Position [100, 0];
  1799.     Size [50, 14];
  1800.  
  1801.     String "6" {
  1802.         Position [50, 7];
  1803.         Justify CenterRight;
  1804.     };
  1805. };
  1806.  
  1807. EditBox "InGameHomeEnergyLevelTitle" {
  1808.     Style "InGameCoachingGeneralText";
  1809.     Position [0, 0];
  1810.     Size [100, 14];
  1811.  
  1812.     String "Energy Level" {
  1813.         Position [0, 7];
  1814.         Justify CenterLeft;
  1815.     };
  1816. };
  1817.  
  1818. EditBox "InGameHomeEnergyLevel" {
  1819.     Style "InGameCoachingGeneralText";
  1820.     Position [100, 0];
  1821.     Size [43, 14];
  1822.  
  1823.     String "100" {
  1824.         Position [43, 7];
  1825.         Justify CenterRight;
  1826.     };
  1827. };
  1828.  
  1829. EditBox "InGameHomeEnergyLevelPercentSign" {
  1830.     Style "InGameCoachingGeneralText";
  1831.     Position [145, 0];
  1832.     Size [5, 14];
  1833.  
  1834.     String "%" {
  1835.         Position [0, 7];
  1836.         Justify CenterLeft;
  1837.     };
  1838. };
  1839.  
  1840. EditBox "InGameHomeSeasonStatsTitle" {
  1841.     Style "InGameCoachingGeneralText";
  1842.     Position [0, 0];
  1843.     Size [150, 24];
  1844.  
  1845.     String "SEASON STATISTICS" {
  1846.         Position [75, 15];
  1847.         Justify CenterCenter;
  1848.     };
  1849. };
  1850.  
  1851. EditBox "InGameHomePointsPerGameTitle" {
  1852.     Style "InGameCoachingGeneralText";
  1853.     Position [0, 0];
  1854.     Size [120, 14];
  1855.  
  1856.     String "PPG" {
  1857.         Position [0, 7];
  1858.         Justify CenterLeft;
  1859.     };
  1860. };
  1861.  
  1862. EditBox "InGameHomePointsPerGame" {
  1863.     Style "InGameCoachingGeneralText";
  1864.     Position [100, 0];
  1865.     Size [50, 14];
  1866.  
  1867.     String "20.5" {
  1868.         Position [50, 7];
  1869.         Justify CenterRight;
  1870.     };
  1871. };
  1872.  
  1873. EditBox "InGameHomeAssistsPerGameTitle" {
  1874.     Style "InGameCoachingGeneralText";
  1875.     Position [0, 0];
  1876.     Size [120, 14];
  1877.  
  1878.     String "APG" {
  1879.         Position [0, 7];
  1880.         Justify CenterLeft;
  1881.     };
  1882. };
  1883.  
  1884. EditBox "InGameHomeAssistsPerGame" {
  1885.     Style "InGameCoachingGeneralText";
  1886.     Position [100, 0];
  1887.     Size [50, 14];
  1888.  
  1889.     String "20.5" {
  1890.         Position [50, 7];
  1891.         Justify CenterRight;
  1892.     };
  1893. };
  1894.  
  1895. EditBox "InGameHomeReboundsPerGameTitle" {
  1896.     Style "InGameCoachingGeneralText";
  1897.     Position [0, 0];
  1898.     Size [120, 14];
  1899.  
  1900.     String "RPG" {
  1901.         Position [0, 7];
  1902.         Justify CenterLeft;
  1903.     };
  1904. };
  1905.  
  1906. EditBox "InGameHomeReboundsPerGame" {
  1907.     Style "InGameCoachingGeneralText";
  1908.     Position [100, 0];
  1909.     Size [50, 14];
  1910.  
  1911.     String "20.5" {
  1912.         Position [50, 7];
  1913.         Justify CenterRight;
  1914.     };
  1915. };
  1916.  
  1917. EditBox "InGameHomeFreeThrowPercentageTitle" {
  1918.     Style "InGameCoachingGeneralText";
  1919.     Position [0, 0];
  1920.     Size [120, 14];
  1921.  
  1922.     String "FT%" {
  1923.         Position [0, 7];
  1924.         Justify CenterLeft;
  1925.     };
  1926. };
  1927.  
  1928. EditBox "InGameHomeFreeThrowPercentage" {
  1929.     Style "InGameCoachingGeneralText";
  1930.     Position [100, 0];
  1931.     Size [50, 14];
  1932.  
  1933.     String "78%" {
  1934.         Position [50, 7];
  1935.         Justify CenterRight;
  1936.     };
  1937. };
  1938.  
  1939. EditBox "InGameHomeBlocksPerGameTitle" {
  1940.     Style "InGameCoachingGeneralText";
  1941.     Position [0, 0];
  1942.     Size [120, 14];
  1943.  
  1944.     String "BPG" {
  1945.         Position [0, 7];
  1946.         Justify CenterLeft;
  1947.     };
  1948. };
  1949.  
  1950. EditBox "InGameHomeBlocksPerGame" {
  1951.     Style "InGameCoachingGeneralText";
  1952.     Position [100, 0];
  1953.     Size [50, 14];
  1954.  
  1955.     String "20.5" {
  1956.         Position [50, 7];
  1957.         Justify CenterRight;
  1958.     };
  1959. };
  1960.  
  1961. EditBox "InGameHomeStealsPerGameTitle" {
  1962.     Style "InGameCoachingGeneralText";
  1963.     Position [0, 0];
  1964.     Size [120, 14];
  1965.  
  1966.     String "SPG" {
  1967.         Position [0, 7];
  1968.         Justify CenterLeft;
  1969.     };
  1970. };
  1971.  
  1972. EditBox "InGameHomeStealsPerGame" {
  1973.     Style "InGameCoachingGeneralText";
  1974.     Position [100, 0];
  1975.     Size [50, 14];
  1976.  
  1977.     String "20.5" {
  1978.         Position [50, 7];
  1979.         Justify CenterRight;
  1980.     };
  1981. };
  1982.  
  1983. EditBox "InGameHomePlayerRatingsTitle" {
  1984.     Style "InGameCoachingGeneralText";
  1985.     Position [0, 0];
  1986.     Size [150, 24];
  1987.  
  1988.     String "PLAYER RATINGS" {
  1989.         Position [75, 15];
  1990.         Justify CenterCenter;
  1991.     };
  1992. };
  1993.  
  1994. EditBox "InGameHomeRatingSpeedTitle" {
  1995.     Style "InGameCoachingGeneralText";
  1996.     Position [0, 0];
  1997.     Size [120, 14];
  1998.  
  1999.     String "Speed" {
  2000.         Position [0, 7];
  2001.         Justify CenterLeft;
  2002.     };
  2003. };
  2004.  
  2005. EditBox "InGameHomeRatingSpeed" {
  2006.     Style "InGameCoachingGeneralText";
  2007.     Position [100, 0];
  2008.     Size [50, 14];
  2009.  
  2010.     String "100" {
  2011.         Position [50, 7];
  2012.         Justify CenterRight;
  2013.     };
  2014. };
  2015.  
  2016. EditBox "InGameHomeRatingShootingTitle" {
  2017.     Style "InGameCoachingGeneralText";
  2018.     Position [0, 0];
  2019.     Size [120, 14];
  2020.  
  2021.     String "Shooting" {
  2022.         Position [0, 7];
  2023.         Justify CenterLeft;
  2024.     };
  2025. };
  2026.  
  2027. EditBox "InGameHomeRatingShooting" {
  2028.     Style "InGameCoachingGeneralText";
  2029.     Position [100, 0];
  2030.     Size [50, 14];
  2031.  
  2032.     String "100" {
  2033.         Position [50, 7];
  2034.         Justify CenterRight;
  2035.     };
  2036. };
  2037.  
  2038. EditBox "InGameHomeRating3PointShootingTitle" {
  2039.     Style "InGameCoachingGeneralText";
  2040.     Position [0, 0];
  2041.     Size [120, 14];
  2042.  
  2043.     String "3 Point Shooting" {
  2044.         Position [0, 7];
  2045.         Justify CenterLeft;
  2046.     };
  2047. };
  2048.  
  2049. EditBox "InGameHomeRating3PointShooting" {
  2050.     Style "InGameCoachingGeneralText";
  2051.     Position [100, 0];
  2052.     Size [50, 14];
  2053.  
  2054.     String "100" {
  2055.         Position [50, 7];
  2056.         Justify CenterRight;
  2057.     };
  2058. };
  2059.  
  2060. EditBox "InGameHomeRatingFreeThrowTitle" {
  2061.     Style "InGameCoachingGeneralText";
  2062.     Position [0, 0];
  2063.     Size [120, 14];
  2064.  
  2065.     String "Free Throws" {
  2066.         Position [0, 7];
  2067.         Justify CenterLeft;
  2068.     };
  2069. };
  2070.  
  2071. EditBox "InGameHomeRatingFreeThrow" {
  2072.     Style "InGameCoachingGeneralText";
  2073.     Position [100, 0];
  2074.     Size [50, 14];
  2075.  
  2076.     String "100" {
  2077.         Position [50, 7];
  2078.         Justify CenterRight;
  2079.     };
  2080. };
  2081.  
  2082. EditBox "InGameHomeRatingReboundTitle" {
  2083.     Style "InGameCoachingGeneralText";
  2084.     Position [0, 0];
  2085.     Size [120, 14];
  2086.  
  2087.     String "Rebounding" {
  2088.         Position [0, 7];
  2089.         Justify CenterLeft;
  2090.     };
  2091. };
  2092.  
  2093. EditBox "InGameHomeRatingRebound" {
  2094.     Style "InGameCoachingGeneralText";
  2095.     Position [100, 0];
  2096.     Size [50, 14];
  2097.  
  2098.     String "100" {
  2099.         Position [50, 7];
  2100.         Justify CenterRight;
  2101.     };
  2102. };
  2103.  
  2104. EditBox "InGameHomeRatingStealTitle" {
  2105.     Style "InGameCoachingGeneralText";
  2106.     Position [0, 0];
  2107.     Size [120, 14];
  2108.  
  2109.     String "Stealing" {
  2110.         Position [0, 7];
  2111.         Justify CenterLeft;
  2112.     };
  2113. };
  2114.  
  2115. EditBox "InGameHomeRatingSteal" {
  2116.     Style "InGameCoachingGeneralText";
  2117.     Position [100, 0];
  2118.     Size [50, 14];
  2119.  
  2120.     String "100" {
  2121.         Position [50, 7];
  2122.         Justify CenterRight;
  2123.     };
  2124. };
  2125.  
  2126. EditBox "InGameHomeRatingBlockTitle" {
  2127.     Style "InGameCoachingGeneralText";
  2128.     Position [0, 0];
  2129.     Size [120, 14];
  2130.  
  2131.     String "Blocking" {
  2132.         Position [0, 7];
  2133.         Justify CenterLeft;
  2134.     };
  2135. };
  2136.  
  2137. EditBox "InGameHomeRatingBlock" {
  2138.     Style "InGameCoachingGeneralText";
  2139.     Position [100, 0];
  2140.     Size [50, 14];
  2141.  
  2142.     String "100" {
  2143.         Position [50, 7];
  2144.         Justify CenterRight;
  2145.     };
  2146. };
  2147.  
  2148. EditBox "InGameHomeRatingClutchTitle" {
  2149.     Style "InGameCoachingGeneralText";
  2150.     Position [0, 0];
  2151.     Size [120, 14];
  2152.  
  2153.     String "Clutch" {
  2154.         Position [0, 7];
  2155.         Justify CenterLeft;
  2156.     };
  2157. };
  2158.  
  2159. EditBox "InGameHomeRatingClutch" {
  2160.     Style "InGameCoachingGeneralText";
  2161.     Position [100, 0];
  2162.     Size [50, 14];
  2163.  
  2164.     String "100" {
  2165.         Position [50, 7];
  2166.         Justify CenterRight;
  2167.     };
  2168. };
  2169.  
  2170. EditBox "InGameAwayCurrentStatsTitle" {
  2171.     Style "InGameCoachingGeneralText";
  2172.     Position [0, 0];
  2173.     Size [150, 16];
  2174.  
  2175.     String "GAME STATISTICS" {
  2176.         Position [75, 7];
  2177.         Justify CenterCenter;
  2178.     };
  2179. };
  2180.  
  2181. EditBox "InGameAwayPointsTitle" {
  2182.     Style "InGameCoachingGeneralText";
  2183.     Position [0, 0];
  2184.     Size [100, 14];
  2185.  
  2186.     String "PTS" {
  2187.         Position [0, 7];
  2188.         Justify CenterLeft;
  2189.     };
  2190. };
  2191.  
  2192. EditBox "InGameAwayPoints" {
  2193.     Style "InGameCoachingGeneralText";
  2194.     Position [100, 0];
  2195.     Size [50, 14];
  2196.  
  2197.     String "100" {
  2198.         Position [50, 7];
  2199.         Justify CenterRight;
  2200.     };
  2201. };
  2202.  
  2203. EditBox "InGameAwayAssistsTitle" {
  2204.     Style "InGameCoachingGeneralText";
  2205.     Position [0, 0];
  2206.     Size [100, 14];
  2207.  
  2208.     String "AST" {
  2209.         Position [0, 7];
  2210.         Justify CenterLeft;
  2211.     };
  2212. };
  2213.  
  2214. EditBox "InGameAwayAssists" {
  2215.     Style "InGameCoachingGeneralText";
  2216.     Position [100, 0];
  2217.     Size [50, 14];
  2218.  
  2219.     String "100" {
  2220.         Position [50, 7];
  2221.         Justify CenterRight;
  2222.     };
  2223. };
  2224.  
  2225. EditBox "InGameAwayReboundsTitle" {
  2226.     Style "InGameCoachingGeneralText";
  2227.     Position [0, 0];
  2228.     Size [100, 14];
  2229.  
  2230.     String "REB" {
  2231.         Position [0, 7];
  2232.         Justify CenterLeft;
  2233.     };
  2234. };
  2235.  
  2236. EditBox "InGameAwayRebounds" {
  2237.     Style "InGameCoachingGeneralText";
  2238.     Position [100, 0];
  2239.     Size [50, 14];
  2240.  
  2241.     String "100" {
  2242.         Position [50, 7];
  2243.         Justify CenterRight;
  2244.     };
  2245. };
  2246.  
  2247. EditBox "InGameAwayFreeThrowsTitle" {
  2248.     Style "InGameCoachingGeneralText";
  2249.     Position [0, 0];
  2250.     Size [120, 14];
  2251.  
  2252.     String "FTM/A" {
  2253.         Position [0, 7];
  2254.         Justify CenterLeft;
  2255.     };
  2256. };
  2257.  
  2258. EditBox "InGameAwayFreeThrowsMade" {
  2259.     Style "InGameCoachingGeneralText";
  2260.     Position [125, 0];
  2261.     Size [10, 14];
  2262.  
  2263.     String "10" {
  2264.         Position [10, 7];
  2265.         Justify CenterRight;
  2266.     };
  2267. };
  2268.  
  2269. EditBox "InGameAwayFreeThrowsSeparator" {
  2270.     Style "InGameCoachingGeneralText";
  2271.     Position [135, 0];
  2272.     Size [5, 14];
  2273.  
  2274.     String "/" {
  2275.         Position [0, 7];
  2276.         Justify CenterLeft;
  2277.     };
  2278. };
  2279.  
  2280. EditBox "InGameAwayFreeThrowsAttempted" {
  2281.     Style "InGameCoachingGeneralText";
  2282.     Position [140, 0];
  2283.     Size [10, 14];
  2284.  
  2285.     String "10" {
  2286.         Position [10, 7];
  2287.         Justify CenterRight;
  2288.     };
  2289. };
  2290.  
  2291. EditBox "InGameAwayBlocksTitle" {
  2292.     Style "InGameCoachingGeneralText";
  2293.     Position [0, 0];
  2294.     Size [50, 14];
  2295.  
  2296.     String "BLK" {
  2297.         Position [0, 7];
  2298.         Justify CenterLeft;
  2299.     };
  2300. };
  2301.  
  2302. EditBox "InGameAwayBlocks" {
  2303.     Style "InGameCoachingGeneralText";
  2304.     Position [135, 0];
  2305.     Size [15, 14];
  2306.  
  2307.     String "10" {
  2308.         Position [15, 7];
  2309.         Justify CenterRight;
  2310.     };
  2311. };
  2312.  
  2313. EditBox "InGameAwayStealsTitle" {
  2314.     Style "InGameCoachingGeneralText";
  2315.     Position [0, 0];
  2316.     Size [50, 14];
  2317.  
  2318.     String "STL" {
  2319.         Position [0, 7];
  2320.         Justify CenterLeft;
  2321.     };
  2322. };
  2323.  
  2324. EditBox "InGameAwaySteals" {
  2325.     Style "InGameCoachingGeneralText";
  2326.     Position [135, 0];
  2327.     Size [15, 14];
  2328.  
  2329.     String "10" {
  2330.         Position [15, 7];
  2331.         Justify CenterRight;
  2332.     };
  2333. };
  2334.  
  2335. EditBox "InGameAwayPersonalFoulsTitle" {
  2336.     Style "InGameCoachingGeneralText";
  2337.     Position [0, 0];
  2338.     Size [120, 14];
  2339.  
  2340.     String "FOULS" {
  2341.         Position [0, 7];
  2342.         Justify CenterLeft;
  2343.     };
  2344. };
  2345.  
  2346. EditBox "InGameAwayPersonalFouls" {
  2347.     Style "InGameCoachingGeneralText";
  2348.     Position [100, 0];
  2349.     Size [50, 14];
  2350.  
  2351.     String "6" {
  2352.         Position [50, 7];
  2353.         Justify CenterRight;
  2354.     };
  2355. };
  2356.  
  2357. EditBox "InGameAwayEnergyLevelTitle" {
  2358.     Style "InGameCoachingGeneralText";
  2359.     Position [0, 0];
  2360.     Size [100, 14];
  2361.  
  2362.     String "Energy Level" {
  2363.         Position [0, 7];
  2364.         Justify CenterLeft;
  2365.     };
  2366. };
  2367.  
  2368. EditBox "InGameAwayEnergyLevel" {
  2369.     Style "InGameCoachingGeneralText";
  2370.     Position [100, 0];
  2371.     Size [43, 14];
  2372.  
  2373.     String "100" {
  2374.         Position [43, 7];
  2375.         Justify CenterRight;
  2376.     };
  2377. };
  2378.  
  2379. EditBox "InGameAwayEnergyLevelPercentSign" {
  2380.     Style "InGameCoachingGeneralText";
  2381.     Position [145, 0];
  2382.     Size [5, 14];
  2383.  
  2384.     String "%" {
  2385.         Position [0, 7];
  2386.         Justify CenterLeft;
  2387.     };
  2388. };
  2389.  
  2390. EditBox "InGameAwaySeasonStatsTitle" {
  2391.     Style "InGameCoachingGeneralText";
  2392.     Position [0, 0];
  2393.     Size [150, 24];
  2394.  
  2395.     String "SEASON STATISTICS" {
  2396.         Position [75, 15];
  2397.         Justify CenterCenter;
  2398.     };
  2399. };
  2400.  
  2401. EditBox "InGameAwayPointsPerGameTitle" {
  2402.     Style "InGameCoachingGeneralText";
  2403.     Position [0, 0];
  2404.     Size [120, 14];
  2405.  
  2406.     String "PPG" {
  2407.         Position [0, 7];
  2408.         Justify CenterLeft;
  2409.     };
  2410. };
  2411.  
  2412. EditBox "InGameAwayPointsPerGame" {
  2413.     Style "InGameCoachingGeneralText";
  2414.     Position [100, 0];
  2415.     Size [50, 14];
  2416.  
  2417.     String "20.5" {
  2418.         Position [50, 7];
  2419.         Justify CenterRight;
  2420.     };
  2421. };
  2422.  
  2423. EditBox "InGameAwayAssistsPerGameTitle" {
  2424.     Style "InGameCoachingGeneralText";
  2425.     Position [0, 0];
  2426.     Size [120, 14];
  2427.  
  2428.     String "APG" {
  2429.         Position [0, 7];
  2430.         Justify CenterLeft;
  2431.     };
  2432. };
  2433.  
  2434. EditBox "InGameAwayAssistsPerGame" {
  2435.     Style "InGameCoachingGeneralText";
  2436.     Position [100, 0];
  2437.     Size [50, 14];
  2438.  
  2439.     String "20.5" {
  2440.         Position [50, 7];
  2441.         Justify CenterRight;
  2442.     };
  2443. };
  2444.  
  2445. EditBox "InGameAwayReboundsPerGameTitle" {
  2446.     Style "InGameCoachingGeneralText";
  2447.     Position [0, 0];
  2448.     Size [120, 14];
  2449.  
  2450.     String "RPG" {
  2451.         Position [0, 7];
  2452.         Justify CenterLeft;
  2453.     };
  2454. };
  2455.  
  2456. EditBox "InGameAwayReboundsPerGame" {
  2457.     Style "InGameCoachingGeneralText";
  2458.     Position [100, 0];
  2459.     Size [50, 14];
  2460.  
  2461.     String "20.5" {
  2462.         Position [50, 7];
  2463.         Justify CenterRight;
  2464.     };
  2465. };
  2466.  
  2467. EditBox "InGameAwayFreeThrowPercentageTitle" {
  2468.     Style "InGameCoachingGeneralText";
  2469.     Position [0, 0];
  2470.     Size [120, 14];
  2471.  
  2472.     String "FT%" {
  2473.         Position [0, 7];
  2474.         Justify CenterLeft;
  2475.     };
  2476. };
  2477.  
  2478. EditBox "InGameAwayFreeThrowPercentage" {
  2479.     Style "InGameCoachingGeneralText";
  2480.     Position [100, 0];
  2481.     Size [50, 14];
  2482.  
  2483.     String "78%" {
  2484.         Position [50, 7];
  2485.         Justify CenterRight;
  2486.     };
  2487. };
  2488.  
  2489. EditBox "InGameAwayBlocksPerGameTitle" {
  2490.     Style "InGameCoachingGeneralText";
  2491.     Position [0, 0];
  2492.     Size [120, 14];
  2493.  
  2494.     String "BPG" {
  2495.         Position [0, 7];
  2496.         Justify CenterLeft;
  2497.     };
  2498. };
  2499.  
  2500. EditBox "InGameAwayBlocksPerGame" {
  2501.     Style "InGameCoachingGeneralText";
  2502.     Position [100, 0];
  2503.     Size [50, 14];
  2504.  
  2505.     String "20.5" {
  2506.         Position [50, 7];
  2507.         Justify CenterRight;
  2508.     };
  2509. };
  2510.  
  2511. EditBox "InGameAwayStealsPerGameTitle" {
  2512.     Style "InGameCoachingGeneralText";
  2513.     Position [0, 0];
  2514.     Size [120, 14];
  2515.  
  2516.     String "SPG" {
  2517.         Position [0, 7];
  2518.         Justify CenterLeft;
  2519.     };
  2520. };
  2521.  
  2522. EditBox "InGameAwayStealsPerGame" {
  2523.     Style "InGameCoachingGeneralText";
  2524.     Position [100, 0];
  2525.     Size [50, 14];
  2526.  
  2527.     String "20.5" {
  2528.         Position [50, 7];
  2529.         Justify CenterRight;
  2530.     };
  2531. };
  2532.  
  2533. EditBox "InGameAwayPlayerRatingsTitle" {
  2534.     Style "InGameCoachingGeneralText";
  2535.     Position [0, 0];
  2536.     Size [150, 24];
  2537.  
  2538.     String "PLAYER RATINGS" {
  2539.         Position [75, 15];
  2540.         Justify CenterCenter;
  2541.     };
  2542. };
  2543.  
  2544. EditBox "InGameAwayRatingSpeedTitle" {
  2545.     Style "InGameCoachingGeneralText";
  2546.     Position [0, 0];
  2547.     Size [120, 14];
  2548.  
  2549.     String "Speed" {
  2550.         Position [0, 7];
  2551.         Justify CenterLeft;
  2552.     };
  2553. };
  2554.  
  2555. EditBox "InGameAwayRatingSpeed" {
  2556.     Style "InGameCoachingGeneralText";
  2557.     Position [100, 0];
  2558.     Size [50, 14];
  2559.  
  2560.     String "100" {
  2561.         Position [50, 7];
  2562.         Justify CenterRight;
  2563.     };
  2564. };
  2565.  
  2566. EditBox "InGameAwayRatingShootingTitle" {
  2567.     Style "InGameCoachingGeneralText";
  2568.     Position [0, 0];
  2569.     Size [120, 14];
  2570.  
  2571.     String "Shooting" {
  2572.         Position [0, 7];
  2573.         Justify CenterLeft;
  2574.     };
  2575. };
  2576.  
  2577. EditBox "InGameAwayRatingShooting" {
  2578.     Style "InGameCoachingGeneralText";
  2579.     Position [100, 0];
  2580.     Size [50, 14];
  2581.  
  2582.     String "100" {
  2583.         Position [50, 7];
  2584.         Justify CenterRight;
  2585.     };
  2586. };
  2587.  
  2588. EditBox "InGameAwayRating3PointShootingTitle" {
  2589.     Style "InGameCoachingGeneralText";
  2590.     Position [0, 0];
  2591.     Size [120, 14];
  2592.  
  2593.     String "3 Point Shooting" {
  2594.         Position [0, 7];
  2595.         Justify CenterLeft;
  2596.     };
  2597. };
  2598.  
  2599. EditBox "InGameAwayRating3PointShooting" {
  2600.     Style "InGameCoachingGeneralText";
  2601.     Position [100, 0];
  2602.     Size [50, 14];
  2603.  
  2604.     String "100" {
  2605.         Position [50, 7];
  2606.         Justify CenterRight;
  2607.     };
  2608. };
  2609.  
  2610. EditBox "InGameAwayRatingFreeThrowTitle" {
  2611.     Style "InGameCoachingGeneralText";
  2612.     Position [0, 0];
  2613.     Size [120, 14];
  2614.  
  2615.     String "Free Throws" {
  2616.         Position [0, 7];
  2617.         Justify CenterLeft;
  2618.     };
  2619. };
  2620.  
  2621. EditBox "InGameAwayRatingFreeThrow" {
  2622.     Style "InGameCoachingGeneralText";
  2623.     Position [100, 0];
  2624.     Size [50, 14];
  2625.  
  2626.     String "100" {
  2627.         Position [50, 7];
  2628.         Justify CenterRight;
  2629.     };
  2630. };
  2631.  
  2632. EditBox "InGameAwayRatingReboundTitle" {
  2633.     Style "InGameCoachingGeneralText";
  2634.     Position [0, 0];
  2635.     Size [120, 14];
  2636.  
  2637.     String "Rebounding" {
  2638.         Position [0, 7];
  2639.         Justify CenterLeft;
  2640.     };
  2641. };
  2642.  
  2643. EditBox "InGameAwayRatingRebound" {
  2644.     Style "InGameCoachingGeneralText";
  2645.     Position [100, 0];
  2646.     Size [50, 14];
  2647.  
  2648.     String "100" {
  2649.         Position [50, 7];
  2650.         Justify CenterRight;
  2651.     };
  2652. };
  2653.  
  2654. EditBox "InGameAwayRatingStealTitle" {
  2655.     Style "InGameCoachingGeneralText";
  2656.     Position [0, 0];
  2657.     Size [120, 14];
  2658.  
  2659.     String "Stealing" {
  2660.         Position [0, 7];
  2661.         Justify CenterLeft;
  2662.     };
  2663. };
  2664.  
  2665. EditBox "InGameAwayRatingSteal" {
  2666.     Style "InGameCoachingGeneralText";
  2667.     Position [100, 0];
  2668.     Size [50, 14];
  2669.  
  2670.     String "100" {
  2671.         Position [50, 7];
  2672.         Justify CenterRight;
  2673.     };
  2674. };
  2675.  
  2676. EditBox "InGameAwayRatingBlockTitle" {
  2677.     Style "InGameCoachingGeneralText";
  2678.     Position [0, 0];
  2679.     Size [120, 14];
  2680.  
  2681.     String "Blocking" {
  2682.         Position [0, 7];
  2683.         Justify CenterLeft;
  2684.     };
  2685. };
  2686.  
  2687. EditBox "InGameAwayRatingBlock" {
  2688.     Style "InGameCoachingGeneralText";
  2689.     Position [100, 0];
  2690.     Size [50, 14];
  2691.  
  2692.     String "100" {
  2693.         Position [50, 7];
  2694.         Justify CenterRight;
  2695.     };
  2696. };
  2697.  
  2698. EditBox "InGameAwayRatingClutchTitle" {
  2699.     Style "InGameCoachingGeneralText";
  2700.     Position [0, 0];
  2701.     Size [120, 14];
  2702.  
  2703.     String "Clutch" {
  2704.         Position [0, 7];
  2705.         Justify CenterLeft;
  2706.     };
  2707. };
  2708.  
  2709. EditBox "InGameAwayRatingClutch" {
  2710.     Style "InGameCoachingGeneralText";
  2711.     Position [100, 0];
  2712.     Size [50, 14];
  2713.  
  2714.     String "100" {
  2715.         Position [50, 7];
  2716.         Justify CenterRight;
  2717.     };
  2718. };
  2719.  
  2720. CheckButton "InGameSubstitutionButtonHome" {
  2721.     ButtonStyle "InGameOnOffButton";
  2722.  
  2723.     Armed String "ON" {
  2724.         Justify CenterCenter;
  2725.         Position [16, 6];
  2726.     };
  2727.  
  2728.     Enabled String "OFF" {
  2729.         Justify CenterCenter;
  2730.         Position [16, 6];
  2731.     };
  2732. };
  2733. CheckButton "InGameSubstitutionButtonAway" {
  2734.     ButtonStyle "InGameOnOffButton";
  2735.  
  2736.     Armed String "ON" {
  2737.         Justify CenterCenter;
  2738.         Position [16, 6];
  2739.     };
  2740.  
  2741.     Enabled String "OFF" {
  2742.         Justify CenterCenter;
  2743.         Position [16, 6];
  2744.     };
  2745. };
  2746. //********************************
  2747. //  Thumbs
  2748. //********************************
  2749. Thumb "InGameRosterHomeRosterThumb" {
  2750.     Image "InGameRosterRosterThumb";
  2751.     Vertical;
  2752.     FixedPosition 2;
  2753.     Range [15, 169];
  2754. };
  2755.  
  2756. Thumb "InGameRosterAwayRosterThumb" {
  2757.     Image "InGameRosterRosterThumb";
  2758.     Vertical;
  2759.     FixedPosition 2;
  2760.     Range [15, 169];
  2761. };
  2762.  
  2763. Thumb "IGCoachingRosterStatsScrollBarHome" {
  2764.     Image "IGCoachingRosterStatsScrollBarThumb";
  2765.  
  2766.     Vertical;
  2767.  
  2768.     FixedPosition 2;
  2769.     Range [14, 118];
  2770. };
  2771.  
  2772. Thumb "IGCoachingRosterStatsScrollBarAway" {
  2773.     Image "IGCoachingRosterStatsScrollBarThumb";
  2774.  
  2775.     Vertical;
  2776.  
  2777.     FixedPosition 2;
  2778.     Range [14, 118];
  2779. };
  2780.  
  2781.  
  2782. //********************************
  2783. //  Drop Items
  2784. //********************************
  2785. //Current player display drop items
  2786. PlayerDropItem "InGameHomeCenter" {
  2787.     Style "InGameRosterHomePlayersDropItemStyle";
  2788.     String "Starting Center";
  2789.     Rect [35, 35, 119, 15];
  2790.     Highlight Rect [35, 38, 94, 13];
  2791.     Selectable;
  2792.     Position [26, 39];
  2793.  
  2794.     Pushed Action {SetData "InGameRosterHomePlayerDragID" LinkTo "FieldszID";};
  2795.     Pushed Action {SetData "HomePlayerDisplayID" LinkTo "FieldszID";};
  2796.     Pushed Action {Drag PlayerDragItem "InGameRosterHomePlayerFromCenter";};
  2797.     Pushed Action SetField "szOnDeckPos" " ";
  2798.     Pushed Action {UpdateContent;};
  2799. };
  2800.  
  2801. PlayerDropItem "InGameHomePowerForward" {
  2802.     Style "InGameRosterHomePlayersDropItemStyle";
  2803.     String "Starting Power Forward";
  2804.     Rect [35, 206, 119, 15];
  2805.     Highlight Rect [35, 209, 94, 13];
  2806.     Selectable;
  2807.     Position [26, 210];
  2808.  
  2809.     Pushed Action {SetData "InGameRosterHomePlayerDragID" LinkTo "FieldszID";};
  2810.     Pushed Action {SetData "HomePlayerDisplayID" LinkTo "FieldszID";};
  2811.     Pushed Action {Drag PlayerDragItem "InGameRosterHomePlayerFromPowerForward";};
  2812.     Pushed Action SetField "szOnDeckPos" " ";
  2813.     Pushed Action {UpdateContent;};
  2814. };
  2815.  
  2816. PlayerDropItem "InGameHomeSmallForward" {
  2817.     Style "InGameRosterHomePlayersDropItemStyle";
  2818.     String "Starting Small Forward";
  2819.     Rect [176, 56, 154, 15];
  2820.     Highlight Rect [176, 59, 129, 13];
  2821.     Selectable;
  2822.     Position [167, 60];
  2823.  
  2824.     Pushed Action {SetData "InGameRosterHomePlayerDragID" LinkTo "FieldszID";};
  2825.     Pushed Action {SetData "HomePlayerDisplayID" LinkTo "FieldszID";};
  2826.     Pushed Action {Drag PlayerDragItem "InGameRosterHomePlayerFromSmallForward";};
  2827.     Pushed Action SetField "szOnDeckPos" " ";
  2828.     Pushed Action {UpdateContent;};
  2829. };
  2830.  
  2831. PlayerDropItem "InGameHomeShootingGuard" {
  2832.     Style "InGameRosterHomePlayersDropItemStyle";
  2833.     String "Starting Shooting Guard";
  2834.     Rect [176, 186, 154, 15];
  2835.     Highlight Rect [176, 189, 129, 13];
  2836.     Selectable;
  2837.     Position [167, 189];
  2838.  
  2839.     Pushed Action {SetData "InGameRosterHomePlayerDragID" LinkTo "FieldszID";};
  2840.     Pushed Action {SetData "HomePlayerDisplayID" LinkTo "FieldszID";};
  2841.     Pushed Action {Drag PlayerDragItem "InGameRosterHomePlayerFromShootingGuard";};
  2842.     Pushed Action SetField "szOnDeckPos" " ";
  2843.     Pushed Action {UpdateContent;};
  2844. };
  2845.  
  2846. PlayerDropItem "InGameHomePointGuard" {
  2847.     Style "InGameRosterHomePlayersDropItemStyle";
  2848.     String "Starting Point Guard";
  2849.     Rect [233, 120, 123, 15];
  2850.     Highlight Rect [233, 123, 98, 13];
  2851.     Selectable;
  2852.     Position [226, 124];
  2853.  
  2854.     Pushed Action {SetData "InGameRosterHomePlayerDragID" LinkTo "FieldszID";};
  2855.     Pushed Action {SetData "HomePlayerDisplayID" LinkTo "FieldszID";};
  2856.     Pushed Action {Drag PlayerDragItem "InGameRosterHomePlayerFromPointGuard";};
  2857.     Pushed Action SetField "szOnDeckPos" " ";
  2858.     Pushed Action {UpdateContent;};
  2859. };
  2860.  
  2861. PlayerDropItem "InGameAwayCenter" {
  2862.     Style "InGameRosterAwayPlayersDropItemStyle";
  2863.     String "Starting Center";
  2864.     Rect [35, 35, 119, 15];
  2865.     Highlight Rect [35, 38, 94, 13];
  2866.     Selectable;
  2867.     Position [26, 39];
  2868.  
  2869.     Pushed Action {SetData "InGameRosterAwayPlayerDragID" LinkTo "FieldszID";};
  2870.     Pushed Action {SetData "AwayPlayerDisplayID" LinkTo "FieldszID";};
  2871.     Pushed Action {Drag PlayerDragItem "InGameRosterAwayPlayerFromCenter";};
  2872.     Pushed Action SetField "szOnDeckPos" " ";
  2873.     Pushed Action {UpdateContent;};
  2874. };
  2875.  
  2876. PlayerDropItem "InGameAwayPowerForward" {
  2877.     Style "InGameRosterAwayPlayersDropItemStyle";
  2878.     String "Starting Power Forward";
  2879.     Rect [35, 206, 119, 15];
  2880.     Highlight Rect [35, 209, 94, 13];
  2881.     Selectable;
  2882.     Position [26, 210];
  2883.  
  2884.     Pushed Action {SetData "InGameRosterAwayPlayerDragID" LinkTo "FieldszID";};
  2885.     Pushed Action {SetData "AwayPlayerDisplayID" LinkTo "FieldszID";};
  2886.     Pushed Action {Drag PlayerDragItem "InGameRosterAwayPlayerFromPowerForward";};
  2887.     Pushed Action SetField "szOnDeckPos" " ";
  2888.     Pushed Action {UpdateContent;};
  2889. };
  2890.  
  2891. PlayerDropItem "InGameAwaySmallForward" {
  2892.     Style "InGameRosterAwayPlayersDropItemStyle";
  2893.     String "Starting Small Forward";
  2894.     Rect [176, 56, 154, 15];
  2895.     Highlight Rect [176, 59, 129, 13];
  2896.     Selectable;
  2897.     Position [167, 60];
  2898.  
  2899.     Pushed Action {SetData "InGameRosterAwayPlayerDragID" LinkTo "FieldszID";};
  2900.     Pushed Action {SetData "AwayPlayerDisplayID" LinkTo "FieldszID";};
  2901.     Pushed Action {Drag PlayerDragItem "InGameRosterAwayPlayerFromSmallForward";};
  2902.     Pushed Action SetField "szOnDeckPos" " ";
  2903.     Pushed Action {UpdateContent;};
  2904. };
  2905.  
  2906. PlayerDropItem "InGameAwayShootingGuard" {
  2907.     Style "InGameRosterAwayPlayersDropItemStyle";
  2908.     String "Starting Shooting Guard";
  2909.     Rect [176, 186, 154, 15];
  2910.     Highlight Rect [176, 189, 129, 13];
  2911.     Selectable;
  2912.     Position [167, 189];
  2913.  
  2914.     Pushed Action {SetData "InGameRosterAwayPlayerDragID" LinkTo "FieldszID";};
  2915.     Pushed Action {SetData "AwayPlayerDisplayID" LinkTo "FieldszID";};
  2916.     Pushed Action {Drag PlayerDragItem "InGameRosterAwayPlayerFromShootingGuard";};
  2917.     Pushed Action SetField "szOnDeckPos" " ";
  2918.     Pushed Action {UpdateContent;};
  2919. };
  2920.  
  2921. PlayerDropItem "InGameAwayPointGuard" {
  2922.     Style "InGameRosterAwayPlayersDropItemStyle";
  2923.     String "Starting Point Guard";
  2924.     Rect [233, 120, 123, 15];
  2925.     Highlight Rect [233, 123, 98, 13];
  2926.     Selectable;
  2927.     Position [226, 124];
  2928.  
  2929.     Pushed Action {SetData "InGameRosterAwayPlayerDragID" LinkTo "FieldszID";};
  2930.     Pushed Action {SetData "AwayPlayerDisplayID" LinkTo "FieldszID";};
  2931.     Pushed Action {Drag PlayerDragItem "InGameRosterAwayPlayerFromPointGuard";};
  2932.     Pushed Action SetField "szOnDeckPos" " ";
  2933.     Pushed Action {UpdateContent;};
  2934. };
  2935.  
  2936. //Substitution drop items
  2937. PlayerDropItem "InGameRosterHomeCourtCenter" {
  2938.     Style "InGameRosterHomePlayersDropItemStyle";
  2939.     String "Starting Center";
  2940.     Rect [20, 19, 134, 30];
  2941.     Highlight Rect [45, 22, 109, 13];
  2942.     Selectable;
  2943.     Position [26, 23];
  2944.  
  2945.     Pushed Action {SetData "InGameRosterHomePlayerDragID" LinkTo "FieldszID";};
  2946.     Pushed Action {SetData "HomePlayerDisplayID" LinkTo "FieldszID";};
  2947.     Pushed Action {Drag PlayerDragItem "InGameRosterHomePlayer";};
  2948.     Pushed Action SetField "szOnDeckPos" " ";
  2949.     Pushed Action {UpdateContent;};
  2950. };
  2951.  
  2952. PlayerDropItem "InGameRosterHomeCourtSmallForward" {
  2953.     Style "InGameRosterHomePlayersDropItemStyle";
  2954.     String "Starting Small Forward";
  2955.     Rect [161, 40, 169, 30];
  2956.     Highlight Rect [186, 43, 144, 13];
  2957.     Selectable;
  2958.     Position [167, 44];
  2959.  
  2960.     Pushed Action {SetData "InGameRosterHomePlayerDragID" LinkTo "FieldszID";};
  2961.     Pushed Action {SetData "HomePlayerDisplayID" LinkTo "FieldszID";};
  2962.     Pushed Action {Drag PlayerDragItem "InGameRosterHomePlayer";};
  2963.     Pushed Action SetField "szOnDeckPos" " ";
  2964.     Pushed Action {UpdateContent;};
  2965. };
  2966.  
  2967. PlayerDropItem "InGameRosterHomeCourtPointGuard" {
  2968.     Style "InGameRosterHomePlayersDropItemStyle";
  2969.     String "Starting Point Guard";
  2970.     Rect [218, 104, 138, 30];
  2971.     Highlight Rect [243, 107, 113, 13];
  2972.     Selectable;
  2973.     Position [226, 108];
  2974.  
  2975.     Pushed Action {SetData "InGameRosterHomePlayerDragID" LinkTo "FieldszID";};
  2976.     Pushed Action {SetData "HomePlayerDisplayID" LinkTo "FieldszID";};
  2977.     Pushed Action {Drag PlayerDragItem "InGameRosterHomePlayer";};
  2978.     Pushed Action SetField "szOnDeckPos" " ";
  2979.     Pushed Action {UpdateContent;};
  2980. };
  2981.  
  2982. PlayerDropItem "InGameRosterHomeCourtShootingGuard" {
  2983.     Style "InGameRosterHomePlayersDropItemStyle";
  2984.     String "Starting Shooting Guard";
  2985.     Rect [161, 169, 169, 30];
  2986.     Highlight Rect [186, 172, 144, 13];
  2987.     Selectable;
  2988.     Position [167, 173];
  2989.  
  2990.     Pushed Action {SetData "InGameRosterHomePlayerDragID" LinkTo "FieldszID";};
  2991.     Pushed Action {SetData "HomePlayerDisplayID" LinkTo "FieldszID";};
  2992.     Pushed Action {Drag PlayerDragItem "InGameRosterHomePlayer";};
  2993.     Pushed Action SetField "szOnDeckPos" " ";
  2994.     Pushed Action {UpdateContent;};
  2995. };
  2996.  
  2997. PlayerDropItem "InGameRosterHomeCourtPowerForward" {
  2998.     Style "InGameRosterHomePlayersDropItemStyle";
  2999.     String "Starting Power Forward";
  3000.     Rect [20, 190, 134, 30];
  3001.     Highlight Rect [45, 193, 109, 13];
  3002.     Selectable;
  3003.     Position [26, 194];
  3004.  
  3005.     Pushed Action {SetData "InGameRosterHomePlayerDragID" LinkTo "FieldszID";};
  3006.     Pushed Action {SetData "HomePlayerDisplayID" LinkTo "FieldszID";};
  3007.     Pushed Action {Drag PlayerDragItem "InGameRosterHomePlayer";};
  3008.     Pushed Action SetField "szOnDeckPos" " ";
  3009.     Pushed Action {UpdateContent;};
  3010. };
  3011.  
  3012. PlayerDropItem "InGameRosterAwayCourtCenter" {
  3013.     Style "InGameRosterAwayPlayersDropItemStyle";
  3014.     String "Starting Center";
  3015.     Rect [20, 19, 134, 30];
  3016.     Highlight Rect [45, 22, 109, 13];
  3017.     Selectable;
  3018.     Position [26, 23];
  3019.  
  3020.     Pushed Action {SetData "InGameRosterAwayPlayerDragID" LinkTo "FieldszID";};
  3021.     Pushed Action {SetData "AwayPlayerDisplayID" LinkTo "FieldszID";};
  3022.     Pushed Action {Drag PlayerDragItem "InGameRosterAwayPlayer";};
  3023.     Pushed Action SetField "szOnDeckPos" " ";
  3024.     Pushed Action {UpdateContent;};
  3025. };
  3026.  
  3027. PlayerDropItem "InGameRosterAwayCourtSmallForward" {
  3028.     Style "InGameRosterAwayPlayersDropItemStyle";
  3029.     String "Starting Small Forward";
  3030.     Rect [161, 40, 169, 30];
  3031.     Highlight Rect [186, 43, 144, 13];
  3032.     Selectable;
  3033.     Position [167, 44];
  3034.  
  3035.     Pushed Action {SetData "InGameRosterAwayPlayerDragID" LinkTo "FieldszID";};
  3036.     Pushed Action {SetData "AwayPlayerDisplayID" LinkTo "FieldszID";};
  3037.     Pushed Action {Drag PlayerDragItem "InGameRosterAwayPlayer";};
  3038.     Pushed Action SetField "szOnDeckPos" " ";
  3039.     Pushed Action {UpdateContent;};
  3040. };
  3041.  
  3042. PlayerDropItem "InGameRosterAwayCourtPointGuard" {
  3043.     Style "InGameRosterAwayPlayersDropItemStyle";
  3044.     String "Starting Point Guard";
  3045.     Rect [218, 104, 138, 30];
  3046.     Highlight Rect [243, 107, 113, 13];
  3047.     Selectable;
  3048.     Position [226, 108];
  3049.  
  3050.     Pushed Action {SetData "InGameRosterAwayPlayerDragID" LinkTo "FieldszID";};
  3051.     Pushed Action {SetData "AwayPlayerDisplayID" LinkTo "FieldszID";};
  3052.     Pushed Action {Drag PlayerDragItem "InGameRosterAwayPlayer";};
  3053.     Pushed Action SetField "szOnDeckPos" " ";
  3054.     Pushed Action {UpdateContent;};
  3055. };
  3056.  
  3057. PlayerDropItem "InGameRosterAwayCourtShootingGuard" {
  3058.     Style "InGameRosterAwayPlayersDropItemStyle";
  3059.     String "Starting Shooting Guard";
  3060.     Rect [161, 169, 169, 30];
  3061.     Highlight Rect [186, 172, 144, 13];
  3062.     Selectable;
  3063.     Position [167, 173];
  3064.  
  3065.     Pushed Action {SetData "InGameRosterAwayPlayerDragID" LinkTo "FieldszID";};
  3066.     Pushed Action {SetData "AwayPlayerDisplayID" LinkTo "FieldszID";};
  3067.     Pushed Action {Drag PlayerDragItem "InGameRosterAwayPlayer";};
  3068.     Pushed Action SetField "szOnDeckPos" " ";
  3069.     Pushed Action {UpdateContent;};
  3070. };
  3071.  
  3072. PlayerDropItem "InGameRosterAwayCourtPowerForward" {
  3073.     Style "InGameRosterAwayPlayersDropItemStyle";
  3074.     String "Starting Power Forward";
  3075.     Rect [20, 190, 134, 30];
  3076.     Highlight Rect [45, 193, 109, 13];
  3077.     Selectable;
  3078.     Position [26, 194];
  3079.  
  3080.     Pushed Action {SetData "InGameRosterAwayPlayerDragID" LinkTo "FieldszID";};
  3081.     Pushed Action {SetData "AwayPlayerDisplayID" LinkTo "FieldszID";};
  3082.     Pushed Action {Drag PlayerDragItem "InGameRosterAwayPlayer";};
  3083.     Pushed Action SetField "szOnDeckPos" " ";
  3084.     Pushed Action {UpdateContent;};
  3085. };
  3086.  
  3087. //********************************
  3088. //  Drag Items
  3089. //********************************
  3090. PlayerDragItem "InGameRosterHomePlayer" {
  3091.     Style "InGameRosterHomePlayersDragItemStyle";
  3092.     String "Player name goes here";
  3093.     PlayerDropItem "InGameRosterHomeCourtCenter";
  3094.     PlayerDropItem "InGameRosterHomeCourtSmallForward";
  3095.     PlayerDropItem "InGameRosterHomeCourtPointGuard";
  3096.     PlayerDropItem "InGameRosterHomeCourtShootingGuard";
  3097.     PlayerDropItem "InGameRosterHomeCourtPowerForward";
  3098.     Drop Action SwapFieldsDrop "szOnDeckPos";
  3099. };
  3100.  
  3101. PlayerDragItem "InGameRosterHomePlayerFromCenter" {
  3102.     Style "InGameRosterHomePlayersDragItemStyle";
  3103.     String "Player name goes here";
  3104.     PlayerDropItem "InGameRosterHomeCourtSmallForward";
  3105.     PlayerDropItem "InGameRosterHomeCourtPointGuard";
  3106.     PlayerDropItem "InGameRosterHomeCourtShootingGuard";
  3107.     PlayerDropItem "InGameRosterHomeCourtPowerForward";
  3108.     Drop Action SwapFieldsDrop "szOnDeckPos";
  3109. };
  3110.  
  3111. PlayerDragItem "InGameRosterHomePlayerFromSmallForward" {
  3112.     Style "InGameRosterHomePlayersDragItemStyle";
  3113.     String "Player name goes here";
  3114.     PlayerDropItem "InGameRosterHomeCourtCenter";
  3115.     PlayerDropItem "InGameRosterHomeCourtPointGuard";
  3116.     PlayerDropItem "InGameRosterHomeCourtShootingGuard";
  3117.     PlayerDropItem "InGameRosterHomeCourtPowerForward";
  3118.     Drop Action SwapFieldsDrop "szOnDeckPos";
  3119. };
  3120.  
  3121. PlayerDragItem "InGameRosterHomePlayerFromPointGuard" {
  3122.     Style "InGameRosterHomePlayersDragItemStyle";
  3123.     String "Player name goes here";
  3124.     PlayerDropItem "InGameRosterHomeCourtCenter";
  3125.     PlayerDropItem "InGameRosterHomeCourtSmallForward";
  3126.     PlayerDropItem "InGameRosterHomeCourtShootingGuard";
  3127.     PlayerDropItem "InGameRosterHomeCourtPowerForward";
  3128.     Drop Action SwapFieldsDrop "szOnDeckPos";
  3129. };
  3130.  
  3131. PlayerDragItem "InGameRosterHomePlayerFromShootingGuard" {
  3132.     Style "InGameRosterHomePlayersDragItemStyle";
  3133.     String "Player name goes here";
  3134.     PlayerDropItem "InGameRosterHomeCourtCenter";
  3135.     PlayerDropItem "InGameRosterHomeCourtSmallForward";
  3136.     PlayerDropItem "InGameRosterHomeCourtPointGuard";
  3137.     PlayerDropItem "InGameRosterHomeCourtPowerForward";
  3138.     Drop Action SwapFieldsDrop "szOnDeckPos";
  3139. };
  3140.  
  3141. PlayerDragItem "InGameRosterHomePlayerFromPowerForward" {
  3142.     Style "InGameRosterHomePlayersDragItemStyle";
  3143.     String "Player name goes here";
  3144.     PlayerDropItem "InGameRosterHomeCourtCenter";
  3145.     PlayerDropItem "InGameRosterHomeCourtSmallForward";
  3146.     PlayerDropItem "InGameRosterHomeCourtPointGuard";
  3147.     PlayerDropItem "InGameRosterHomeCourtShootingGuard";
  3148.     Drop Action SwapFieldsDrop "szOnDeckPos";
  3149. };
  3150.  
  3151. PlayerDragItem "InGameRosterAwayPlayer" {
  3152.     Style "InGameRosterAwayPlayersDragItemStyle";
  3153.     String "Player name goes here";
  3154.     PlayerDropItem "InGameRosterAwayCourtCenter";
  3155.     PlayerDropItem "InGameRosterAwayCourtSmallForward";
  3156.     PlayerDropItem "InGameRosterAwayCourtPointGuard";
  3157.     PlayerDropItem "InGameRosterAwayCourtShootingGuard";
  3158.     PlayerDropItem "InGameRosterAwayCourtPowerForward";
  3159.     Drop Action SwapFieldsDrop "szOnDeckPos";
  3160. };
  3161.  
  3162. PlayerDragItem "InGameRosterAwayPlayerFromCenter" {
  3163.     Style "InGameRosterAwayPlayersDragItemStyle";
  3164.     String "Player name goes here";
  3165.     PlayerDropItem "InGameRosterAwayCourtSmallForward";
  3166.     PlayerDropItem "InGameRosterAwayCourtPointGuard";
  3167.     PlayerDropItem "InGameRosterAwayCourtShootingGuard";
  3168.     PlayerDropItem "InGameRosterAwayCourtPowerForward";
  3169.     Drop Action SwapFieldsDrop "szOnDeckPos";
  3170. };
  3171.  
  3172. PlayerDragItem "InGameRosterAwayPlayerFromSmallForward" {
  3173.     Style "InGameRosterAwayPlayersDragItemStyle";
  3174.     String "Player name goes here";
  3175.     PlayerDropItem "InGameRosterAwayCourtCenter";
  3176.     PlayerDropItem "InGameRosterAwayCourtPointGuard";
  3177.     PlayerDropItem "InGameRosterAwayCourtShootingGuard";
  3178.     PlayerDropItem "InGameRosterAwayCourtPowerForward";
  3179.     Drop Action SwapFieldsDrop "szOnDeckPos";
  3180. };
  3181.  
  3182. PlayerDragItem "InGameRosterAwayPlayerFromPointGuard" {
  3183.     Style "InGameRosterAwayPlayersDragItemStyle";
  3184.     String "Player name goes here";
  3185.     PlayerDropItem "InGameRosterAwayCourtCenter";
  3186.     PlayerDropItem "InGameRosterAwayCourtSmallForward";
  3187.     PlayerDropItem "InGameRosterAwayCourtShootingGuard";
  3188.     PlayerDropItem "InGameRosterAwayCourtPowerForward";
  3189.     Drop Action SwapFieldsDrop "szOnDeckPos";
  3190. };
  3191.  
  3192. PlayerDragItem "InGameRosterAwayPlayerFromShootingGuard" {
  3193.     Style "InGameRosterAwayPlayersDragItemStyle";
  3194.     String "Player name goes here";
  3195.     PlayerDropItem "InGameRosterAwayCourtCenter";
  3196.     PlayerDropItem "InGameRosterAwayCourtSmallForward";
  3197.     PlayerDropItem "InGameRosterAwayCourtPointGuard";
  3198.     PlayerDropItem "InGameRosterAwayCourtPowerForward";
  3199.     Drop Action SwapFieldsDrop "szOnDeckPos";
  3200. };
  3201.  
  3202. PlayerDragItem "InGameRosterAwayPlayerFromPowerForward" {
  3203.     Style "InGameRosterAwayPlayersDragItemStyle";
  3204.     String "Player name goes here";
  3205.     PlayerDropItem "InGameRosterAwayCourtCenter";
  3206.     PlayerDropItem "InGameRosterAwayCourtSmallForward";
  3207.     PlayerDropItem "InGameRosterAwayCourtPointGuard";
  3208.     PlayerDropItem "InGameRosterAwayCourtShootingGuard";
  3209.     Drop Action SwapFieldsDrop "szOnDeckPos";
  3210. };
  3211.  
  3212. //********************************
  3213. //  List Boxes
  3214. //********************************
  3215. PlayerDBListBox "InGameRosterHomePlayersListBox" {
  3216.     Style "InGameRosterHomePlayersListBoxStyle";
  3217.     Position [1, 38];
  3218.     Size [198, 189];
  3219.     Highlight [160, 0, 0];
  3220.  
  3221.     Select Action {SetData "InGameRosterHomePlayerDragID" LinkTo "FieldszID";};
  3222.     Select Action {SetData "HomePlayerDisplayID" LinkTo "FieldszID";};
  3223.     Select Action {Drag PlayerDragItem "InGameRosterHomePlayer";};
  3224.     Select Action {UpdateContent;};
  3225.  
  3226.     Tab 8 Left;
  3227.     Tab 135 Left;
  3228.     Tab 175 Center;
  3229. };
  3230.  
  3231. PlayerDBListBox "InGameRosterAwayPlayersListBox" {
  3232.     Style "InGameRosterAwayPlayersListBoxStyle";
  3233.     Position [1, 38];
  3234.     Size [198, 189];
  3235.     Highlight [160, 0, 0];
  3236.  
  3237.     Select Action {SetData "InGameRosterAwayPlayerDragID" LinkTo "FieldszID";};
  3238.     Select Action {SetData "AwayPlayerDisplayID" LinkTo "FieldszID";};
  3239.     Select Action {Drag PlayerDragItem "InGameRosterAwayPlayer";};
  3240.     Select Action {UpdateContent;};
  3241.  
  3242.     Tab 8 Left;
  3243.     Tab 135 Left;
  3244.     Tab 175 Center;
  3245. };
  3246.  
  3247. ScreenElementListBox "InGameCoachingHomePlayerInfo" {
  3248.     Size [150, 140];
  3249.  
  3250.     Kerning 1;
  3251.  
  3252.     //Current Game Stats
  3253.     EditBox "InGameHomeCurrentStatsTitle";
  3254.     Group "InGameHomePoints";
  3255.     Group "InGameHomeAssists";
  3256.     Group "InGameHomeRebounds";
  3257.     Group "InGameHomeFreeThrows";
  3258.     Group "InGameHomeBlocks";
  3259.     Group "InGameHomeSteals";
  3260.     Group "InGameHomePersonalFouls";
  3261.     Group "InGameHomeEnergyLevel";
  3262.  
  3263.     //Season Stats
  3264.     EditBox "InGameHomeSeasonStatsTitle";
  3265.     Group "InGameHomePointsPerGame";
  3266.     Group "InGameHomeAssistsPerGame";
  3267.     Group "InGameHomeReboundsPerGame";
  3268.     Group "InGameHomeFreeThrowsPercentage";
  3269.     Group "InGameHomeBlocksPerGame";
  3270.     Group "InGameHomeStealsPerGame";
  3271.  
  3272.     //Player Ratings
  3273.     EditBox "InGameHomePlayerRatingsTitle";
  3274.     Group "InGameHomeRatingSpeed";
  3275.     Group "InGameHomeRatingShooting";
  3276.     Group "InGameHomeRating3PointShooting";
  3277.     Group "InGameHomeRatingFreeThrow";
  3278.     Group "InGameHomeRatingRebound";
  3279.     Group "InGameHomeRatingSteal";
  3280.     Group "InGameHomeRatingBlock";
  3281.     Group "InGameHomeRatingClutch";
  3282. };
  3283.  
  3284. ScreenElementListBox "InGameCoachingAwayPlayerInfo" {
  3285.     Size [150, 140];
  3286.  
  3287.     Kerning 1;
  3288.  
  3289.     //Current Game Stats
  3290.     EditBox "InGameAwayCurrentStatsTitle";
  3291.     Group "InGameAwayPoints";
  3292.     Group "InGameAwayAssists";
  3293.     Group "InGameAwayRebounds";
  3294.     Group "InGameAwayFreeThrows";
  3295.     Group "InGameAwayBlocks";
  3296.     Group "InGameAwaySteals";
  3297.     Group "InGameAwayPersonalFouls";
  3298.     Group "InGameAwayEnergyLevel";
  3299.  
  3300.     //Season Stats
  3301.     EditBox "InGameAwaySeasonStatsTitle";
  3302.     Group "InGameAwayPointsPerGame";
  3303.     Group "InGameAwayAssistsPerGame";
  3304.     Group "InGameAwayReboundsPerGame";
  3305.     Group "InGameAwayFreeThrowsPercentage";
  3306.     Group "InGameAwayBlocksPerGame";
  3307.     Group "InGameAwayStealsPerGame";
  3308.  
  3309.     //Player Ratings
  3310.     EditBox "InGameAwayPlayerRatingsTitle";
  3311.     Group "InGameAwayRatingSpeed";
  3312.     Group "InGameAwayRatingShooting";
  3313.     Group "InGameAwayRating3PointShooting";
  3314.     Group "InGameAwayRatingFreeThrow";
  3315.     Group "InGameAwayRatingRebound";
  3316.     Group "InGameAwayRatingSteal";
  3317.     Group "InGameAwayRatingBlock";
  3318.     Group "InGameAwayRatingClutch";
  3319. };
  3320.  
  3321. //********************************
  3322. //  Groups
  3323. //********************************
  3324. Group "InGameRoster" {
  3325.     Root;
  3326.     GroupStyle "InGameRosterNonTransparentBckrnd";
  3327. //    Position [-77, -72];
  3328.     CenterCenter Position [-397, -312];
  3329.     Children {
  3330.         MenuGroup "InGameRosterLogoBox";
  3331.     };
  3332. };
  3333.  
  3334. MenuGroup "InGameRosterLogoBox" {
  3335.     Style "InGameRosterLogoBoxStyle";
  3336.     Position [109, 100];
  3337.     Children {
  3338.         RadioGroup "InGameRosterLogoBox";
  3339.         Group "InGameRosterHomeScreen";
  3340.         Group "InGameRosterAwayScreen";
  3341.     };
  3342. };
  3343.  
  3344. RadioGroup "InGameRosterLogoBox" {
  3345.     Position [100, 115];
  3346.     Children {
  3347.         CheckButton "InGameRosterHomeLogo";
  3348.         CheckButton "InGameRosterAwayLogo";
  3349.     };
  3350. };
  3351.  
  3352. ListBoxGroup "InGameCoachingHomePlayerInfoGroup" {
  3353.     Position [400, 0];
  3354.     Children {
  3355.         ScreenElementListBox "InGameCoachingHomePlayerInfo";
  3356.         ScrollBarGroup "IGCoachingRosterStatsScrollBarHome";
  3357.     };
  3358. };
  3359.  
  3360. Group "InGameHomePoints" {
  3361.     Children {
  3362.         EditBox "InGameHomePointsTitle";
  3363.         EditBox "InGameHomePoints";
  3364.     };
  3365. };
  3366.  
  3367. Group "InGameHomeAssists" {
  3368.     Children {
  3369.         EditBox "InGameHomeAssistsTitle";
  3370.         EditBox "InGameHomeAssists";
  3371.     };
  3372. };
  3373.  
  3374. Group "InGameHomeRebounds" {
  3375.     Children {
  3376.         EditBox "InGameHomeReboundsTitle";
  3377.         EditBox "InGameHomeRebounds";
  3378.     };
  3379. };
  3380.  
  3381. Group "InGameHomeFreeThrows" {
  3382.     Children {
  3383.         EditBox "InGameHomeFreeThrowsTitle";
  3384.         EditBox "InGameHomeFreeThrowsMade";
  3385.         EditBox "InGameHomeFreeThrowsSeparator";
  3386.         EditBox "InGameHomeFreeThrowsAttempted";
  3387.     };
  3388. };
  3389.  
  3390. Group "InGameHomeBlocks" {
  3391.     Children {
  3392.         EditBox "InGameHomeBlocksTitle";
  3393.         EditBox "InGameHomeBlocks";
  3394.     };
  3395. };
  3396.  
  3397. Group "InGameHomeSteals" {
  3398.     Children {
  3399.         EditBox "InGameHomeStealsTitle";
  3400.         EditBox "InGameHomeSteals";
  3401.     };
  3402. };
  3403.  
  3404. Group "InGameHomePersonalFouls" {
  3405.     Children {
  3406.         EditBox "InGameHomePersonalFoulsTitle";
  3407.         EditBox "InGameHomePersonalFouls";
  3408.     };
  3409. };
  3410.  
  3411. Group "InGameHomeEnergyLevel" {
  3412.     Children {
  3413.         EditBox "InGameHomeEnergyLevelTitle";
  3414.         EditBox "InGameHomeEnergyLevel";
  3415.         EditBox "InGameHomeEnergyLevelPercentSign";
  3416.     };
  3417. };
  3418.  
  3419. Group "InGameHomePointsPerGame" {
  3420.     Children {
  3421.         EditBox "InGameHomePointsPerGameTitle";
  3422.         EditBox "InGameHomePointsPerGame";
  3423.     };
  3424. };
  3425.  
  3426. Group "InGameHomeAssistsPerGame" {
  3427.     Children {
  3428.         EditBox "InGameHomeAssistsPerGameTitle";
  3429.         EditBox "InGameHomeAssistsPerGame";
  3430.     };
  3431. };
  3432.  
  3433. Group "InGameHomeReboundsPerGame" {
  3434.     Children {
  3435.         EditBox "InGameHomeReboundsPerGameTitle";
  3436.         EditBox "InGameHomeReboundsPerGame";
  3437.     };
  3438. };
  3439.  
  3440. Group "InGameHomeFreeThrowsPercentage" {
  3441.     Children {
  3442.         EditBox "InGameHomeFreeThrowPercentageTitle";
  3443.         EditBox "InGameHomeFreeThrowPercentage";
  3444.     };
  3445. };
  3446.  
  3447. Group "InGameHomeBlocksPerGame" {
  3448.     Children {
  3449.         EditBox "InGameHomeBlocksPerGameTitle";
  3450.         EditBox "InGameHomeBlocksPerGame";
  3451.     };
  3452. };
  3453.  
  3454. Group "InGameHomeStealsPerGame" {
  3455.     Children {
  3456.         EditBox "InGameHomeStealsPerGameTitle";
  3457.         EditBox "InGameHomeStealsPerGame";
  3458.     };
  3459. };
  3460.  
  3461. Group "InGameHomeRatingSpeed" {
  3462.     Children {
  3463.         EditBox "InGameHomeRatingSpeedTitle";
  3464.         EditBox "InGameHomeRatingSpeed";
  3465.     };
  3466. };
  3467.  
  3468. Group "InGameHomeRatingShooting" {
  3469.     Children {
  3470.         EditBox "InGameHomeRatingShootingTitle";
  3471.         EditBox "InGameHomeRatingShooting";
  3472.     };
  3473. };
  3474.  
  3475. Group "InGameHomeRating3PointShooting" {
  3476.     Children {
  3477.         EditBox "InGameHomeRating3PointShootingTitle";
  3478.         EditBox "InGameHomeRating3PointShooting";
  3479.     };
  3480. };
  3481.  
  3482. Group "InGameHomeRatingFreeThrow" {
  3483.     Children {
  3484.         EditBox "InGameHomeRatingFreeThrowTitle";
  3485.         EditBox "InGameHomeRatingFreeThrow";
  3486.     };
  3487. };
  3488.  
  3489. Group "InGameHomeRatingRebound" {
  3490.     Children {
  3491.         EditBox "InGameHomeRatingReboundTitle";
  3492.         EditBox "InGameHomeRatingRebound";
  3493.     };
  3494. };
  3495.  
  3496. Group "InGameHomeRatingSteal" {
  3497.     Children {
  3498.         EditBox "InGameHomeRatingStealTitle";
  3499.         EditBox "InGameHomeRatingSteal";
  3500.     };
  3501. };
  3502.  
  3503. Group "InGameHomeRatingBlock" {
  3504.     Children {
  3505.         EditBox "InGameHomeRatingBlockTitle";
  3506.         EditBox "InGameHomeRatingBlock";
  3507.     };
  3508. };
  3509.  
  3510. Group "InGameHomeRatingClutch" {
  3511.     Children {
  3512.         EditBox "InGameHomeRatingClutchTitle";
  3513.         EditBox "InGameHomeRatingClutch";
  3514.     };
  3515. };
  3516.  
  3517. Group "InGameAwayPoints" {
  3518.     Children {
  3519.         EditBox "InGameAwayPointsTitle";
  3520.         EditBox "InGameAwayPoints";
  3521.     };
  3522. };
  3523.  
  3524. Group "InGameAwayAssists" {
  3525.     Children {
  3526.         EditBox "InGameAwayAssistsTitle";
  3527.         EditBox "InGameAwayAssists";
  3528.     };
  3529. };
  3530.  
  3531. Group "InGameAwayRebounds" {
  3532.     Children {
  3533.         EditBox "InGameAwayReboundsTitle";
  3534.         EditBox "InGameAwayRebounds";
  3535.     };
  3536. };
  3537.  
  3538. Group "InGameAwayFreeThrows" {
  3539.     Children {
  3540.         EditBox "InGameAwayFreeThrowsTitle";
  3541.         EditBox "InGameAwayFreeThrowsMade";
  3542.         EditBox "InGameAwayFreeThrowsSeparator";
  3543.         EditBox "InGameAwayFreeThrowsAttempted";
  3544.     };
  3545. };
  3546.  
  3547. Group "InGameAwayBlocks" {
  3548.     Children {
  3549.         EditBox "InGameAwayBlocksTitle";
  3550.         EditBox "InGameAwayBlocks";
  3551.     };
  3552. };
  3553.  
  3554. Group "InGameAwaySteals" {
  3555.     Children {
  3556.         EditBox "InGameAwayStealsTitle";
  3557.         EditBox "InGameAwaySteals";
  3558.     };
  3559. };
  3560.  
  3561. Group "InGameAwayPersonalFouls" {
  3562.     Children {
  3563.         EditBox "InGameAwayPersonalFoulsTitle";
  3564.         EditBox "InGameAwayPersonalFouls";
  3565.     };
  3566. };
  3567.  
  3568. Group "InGameAwayEnergyLevel" {
  3569.     Children {
  3570.         EditBox "InGameAwayEnergyLevelTitle";
  3571.         EditBox "InGameAwayEnergyLevel";
  3572.         EditBox "InGameAwayEnergyLevelPercentSign";
  3573.     };
  3574. };
  3575.  
  3576. Group "InGameAwayPointsPerGame" {
  3577.     Children {
  3578.         EditBox "InGameAwayPointsPerGameTitle";
  3579.         EditBox "InGameAwayPointsPerGame";
  3580.     };
  3581. };
  3582.  
  3583. Group "InGameAwayAssistsPerGame" {
  3584.     Children {
  3585.         EditBox "InGameAwayAssistsPerGameTitle";
  3586.         EditBox "InGameAwayAssistsPerGame";
  3587.     };
  3588. };
  3589.  
  3590. Group "InGameAwayReboundsPerGame" {
  3591.     Children {
  3592.         EditBox "InGameAwayReboundsPerGameTitle";
  3593.         EditBox "InGameAwayReboundsPerGame";
  3594.     };
  3595. };
  3596.  
  3597. Group "InGameAwayFreeThrowsPercentage" {
  3598.     Children {
  3599.         EditBox "InGameAwayFreeThrowPercentageTitle";
  3600.         EditBox "InGameAwayFreeThrowPercentage";
  3601.     };
  3602. };
  3603.  
  3604. Group "InGameAwayBlocksPerGame" {
  3605.     Children {
  3606.         EditBox "InGameAwayBlocksPerGameTitle";
  3607.         EditBox "InGameAwayBlocksPerGame";
  3608.     };
  3609. };
  3610.  
  3611. Group "InGameAwayStealsPerGame" {
  3612.     Children {
  3613.         EditBox "InGameAwayStealsPerGameTitle";
  3614.         EditBox "InGameAwayStealsPerGame";
  3615.     };
  3616. };
  3617.  
  3618. Group "InGameAwayRatingSpeed" {
  3619.     Children {
  3620.         EditBox "InGameAwayRatingSpeedTitle";
  3621.         EditBox "InGameAwayRatingSpeed";
  3622.     };
  3623. };
  3624.  
  3625. Group "InGameAwayRatingShooting" {
  3626.     Children {
  3627.         EditBox "InGameAwayRatingShootingTitle";
  3628.         EditBox "InGameAwayRatingShooting";
  3629.     };
  3630. };
  3631.  
  3632. Group "InGameAwayRating3PointShooting" {
  3633.     Children {
  3634.         EditBox "InGameAwayRating3PointShootingTitle";
  3635.         EditBox "InGameAwayRating3PointShooting";
  3636.     };
  3637. };
  3638.  
  3639. Group "InGameAwayRatingFreeThrow" {
  3640.     Children {
  3641.         EditBox "InGameAwayRatingFreeThrowTitle";
  3642.         EditBox "InGameAwayRatingFreeThrow";
  3643.     };
  3644. };
  3645.  
  3646. Group "InGameAwayRatingRebound" {
  3647.     Children {
  3648.         EditBox "InGameAwayRatingReboundTitle";
  3649.         EditBox "InGameAwayRatingRebound";
  3650.     };
  3651. };
  3652.  
  3653. Group "InGameAwayRatingSteal" {
  3654.     Children {
  3655.         EditBox "InGameAwayRatingStealTitle";
  3656.         EditBox "InGameAwayRatingSteal";
  3657.     };
  3658. };
  3659.  
  3660. Group "InGameAwayRatingBlock" {
  3661.     Children {
  3662.         EditBox "InGameAwayRatingBlockTitle";
  3663.         EditBox "InGameAwayRatingBlock";
  3664.     };
  3665. };
  3666.  
  3667. Group "InGameAwayRatingClutch" {
  3668.     Children {
  3669.         EditBox "InGameAwayRatingClutchTitle";
  3670.         EditBox "InGameAwayRatingClutch";
  3671.     };
  3672. };
  3673.  
  3674. Group "InGameRosterHomeScreen" {
  3675.     Position [0, 0];
  3676.     Children {
  3677.         Group "InGameRosterHomeLogos";
  3678.         Group "InGameRosterHomePlayers";
  3679.         Group "InGameRosterHomeCourt";
  3680.         ListBoxGroup "InGameRosterHomeRoster";
  3681.         ListBoxGroup "InGameCoachingHomePlayerInfoGroup";
  3682.         Group "InGameRosterSubstitutionsButtonHome";
  3683.     };
  3684. };
  3685.  
  3686. Group "InGameRosterHomeLogos" {
  3687.     Position [104, 7];
  3688.     Children {
  3689.         Include "UIScript\HomeLogo";
  3690.     };
  3691. };
  3692.  
  3693. ListBoxGroup "InGameRosterHomeRoster" {
  3694. //    Style "InGameRosterRosterStyle";
  3695.     Position [0, 157];
  3696.     Children {
  3697.         PlayerDBListBox "InGameRosterHomePlayersListBox";
  3698.         ScrollBarGroup "InGameRosterHomePlayersScrollBar";
  3699.     };
  3700. };
  3701.  
  3702. ScrollBarGroup "InGameRosterHomePlayersScrollBar" {
  3703.     Position [8, 38];
  3704.     Children {
  3705.         Button "InGameRosterHomeRosterUp";
  3706.         Thumb "InGameRosterHomeRosterThumb";
  3707.         Button "InGameRosterHomeRosterDown";
  3708.     };
  3709. };
  3710.  
  3711. Group "InGameRosterHomePlayers" {
  3712. //    Style "InGameRosterPlayersBackStyle";
  3713.     Position [202, 24];
  3714.     Children {
  3715.         Group "InGameRosterHomePlayerFaces";
  3716.     };
  3717. };
  3718.  
  3719. Group "InGameRosterHomePlayerFaces" {
  3720.     Position [13, 4];
  3721.     Children {
  3722.         Include "UIScript\HomeFace";
  3723.     };
  3724. };
  3725.  
  3726. Group "InGameRosterHomeCourt" {
  3727. //    Style "InGameRosterCourtStyle";
  3728.     Position [203, 157];
  3729.     Children {
  3730.         PlayerDropItem "InGameRosterHomeCourtCenter";
  3731.      PlayerDropItem "InGameRosterHomeCourtSmallForward";
  3732.         PlayerDropItem "InGameRosterHomeCourtPointGuard";
  3733.         PlayerDropItem "InGameRosterHomeCourtShootingGuard";
  3734.         PlayerDropItem "InGameRosterHomeCourtPowerForward";
  3735.         PlayerDropItem "InGameHomeCenter";
  3736.         PlayerDropItem "InGameHomePowerForward";
  3737.         PlayerDropItem "InGameHomeSmallForward";
  3738.         PlayerDropItem "InGameHomeShootingGuard";
  3739.         PlayerDropItem "InGameHomePointGuard";
  3740.     };
  3741. };
  3742.  
  3743. ListBoxGroup "InGameCoachingAwayPlayerInfoGroup" {
  3744.     Position [400, 0];
  3745.     Children {
  3746.         ScreenElementListBox "InGameCoachingAwayPlayerInfo";
  3747.         ScrollBarGroup "IGCoachingRosterStatsScrollBarAway";
  3748.     };
  3749. };
  3750.  
  3751. Group "InGameRosterAwayScreen" {
  3752.     Position [0, 0];
  3753.     Children {
  3754.         Group "InGameRosterAwayLogos";
  3755.         Group "InGameRosterAwayPlayers";
  3756.         Group "InGameRosterAwayCourt";
  3757.         ListBoxGroup "InGameRosterAwayRoster";
  3758.         ListBoxGroup "InGameCoachingAwayPlayerInfoGroup";
  3759.         Group "InGameRosterSubstitutionsButtonAway";
  3760.     };
  3761. };
  3762.  
  3763. Group "InGameRosterAwayLogos" {
  3764.     Position [104, 7];
  3765.     Children {
  3766.         Include "UIScript\VisLogo";
  3767.     };
  3768. };
  3769.  
  3770. ListBoxGroup "InGameRosterAwayRoster" {
  3771. //    Style "InGameRosterRosterStyle";
  3772.     Position [0, 157];
  3773.     Children {
  3774.         PlayerDBListBox "InGameRosterAwayPlayersListBox";
  3775.         ScrollBarGroup "InGameRosterAwayPlayersScrollBar";
  3776.     };
  3777. };
  3778.  
  3779. ScrollBarGroup "InGameRosterAwayPlayersScrollBar" {
  3780.     Position [8, 38];
  3781.     Children {
  3782.         Button "InGameRosterAwayRosterUp";
  3783.         Thumb "InGameRosterAwayRosterThumb";
  3784.         Button "InGameRosterAwayRosterDown";
  3785.     };
  3786. };
  3787.  
  3788. ScrollBarGroup "IGCoachingRosterStatsScrollBarHome" {
  3789.     Style "IGCoachingRosterStatsScrollBar";
  3790.  
  3791.     Position [160, 0];
  3792.  
  3793.     Children {
  3794.         Button "IGCoachingRosterStatsScrollBarUpHome";
  3795.         Thumb "IGCoachingRosterStatsScrollBarHome";
  3796.         Button "IGCoachingRosterStatsScrollBarDownHome";
  3797.     };
  3798. };
  3799.  
  3800. ScrollBarGroup "IGCoachingRosterStatsScrollBarAway" {
  3801.     Style "IGCoachingRosterStatsScrollBar";
  3802.  
  3803.     Position [160, 0];
  3804.  
  3805.     Children {
  3806.         Button "IGCoachingRosterStatsScrollBarUpAway";
  3807.         Thumb "IGCoachingRosterStatsScrollBarAway";
  3808.         Button "IGCoachingRosterStatsScrollBarDownAway";
  3809.     };
  3810. };
  3811.  
  3812. Group "InGameRosterAwayPlayers" {
  3813. //    Style "InGameRosterPlayersBackStyle";
  3814.     Position [202, 24];
  3815.     Children {
  3816.         Group "InGameRosterAwayPlayerFaces";
  3817.     };
  3818. };
  3819.  
  3820. Group "InGameRosterAwayPlayerFaces" {
  3821.     Position [13, 4];
  3822.     Children {
  3823.         Include "UIScript\AwayFace";
  3824.     };
  3825. };
  3826.  
  3827. Group "InGameRosterAwayCourt" {
  3828. //    Style "InGameRosterCourtStyle";
  3829.     Position [203, 157];
  3830.     Children {
  3831.         PlayerDropItem "InGameRosterAwayCourtCenter";
  3832.         PlayerDropItem "InGameRosterAwayCourtSmallForward";
  3833.         PlayerDropItem "InGameRosterAwayCourtPointGuard";
  3834.         PlayerDropItem "InGameRosterAwayCourtShootingGuard";
  3835.         PlayerDropItem "InGameRosterAwayCourtPowerForward";
  3836.         PlayerDropItem "InGameAwayCenter";
  3837.         PlayerDropItem "InGameAwayPowerForward";
  3838.         PlayerDropItem "InGameAwaySmallForward";
  3839.         PlayerDropItem "InGameAwayShootingGuard";
  3840.         PlayerDropItem "InGameAwayPointGuard";
  3841.     };
  3842. };
  3843. Group "InGameRosterSubstitutionsButtonHome" {
  3844.     Position [203, 410];
  3845.     Children {
  3846.         CheckButton "InGameSubstitutionButtonHome";
  3847.         EditBox "InGameSubstitutionsTextHome";
  3848.     };
  3849. };
  3850. Group "InGameRosterSubstitutionsButtonAway" {
  3851.     Position [203, 410];
  3852.     Children {
  3853.         CheckButton "InGameSubstitutionButtonAway";
  3854.         EditBox "InGameSubstitutionsTextAway";
  3855.     };
  3856. };
  3857.  
  3858. //*****************************
  3859. //   Edit Boxes
  3860. //*****************************
  3861.  
  3862. EditBox "InGameSubstitutionsTextHome" {
  3863.     Style "InGameTitleStyle";
  3864.     Position [45,0];
  3865.     Size [200,50];
  3866.  
  3867.     String "Computer Manages Substitutions" {
  3868.         Justify TopLeft;
  3869.     };
  3870. };
  3871. EditBox "InGameSubstitutionsTextAway" {
  3872.     Style "InGameTitleStyle";
  3873.     Position [45,0];
  3874.     Size [200,50];
  3875.  
  3876.     String "Computer Manages Substitutions" {
  3877.         Justify TopLeft;
  3878.     };
  3879. };